Hi.. I am learning C using Def c++. I struck at strcpy command. It giving error for a small exercise
#include<stdio.h>
main()
{
char string[20];
strcpy("Hello", string);
printf("%s", string);
fflush(stdin);
getchar();
}
it giving error:
`strcpy' undeclared (first use this function)
Please help me that what can i do in dev c++ to get rid of this problem