In code blocks, Strcpy does not work when I declare a string using char * string but works when I declare it as char string[ ]

前端 未结 0 788
名媛妹妹
名媛妹妹 2020-12-14 11:25
#include 
#include 
int main()
{
char t1string[] = "test";
printf("First String value is %s\\n", t1string);
strcpy         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题