Code Snippets C

str2 must be a pointer to a null-terminated string
//Declaration: char *strcpy(char *str1, const char *str2);
//Return: returns a pointer to str1.
#include
#include
int main(void){
char str[80];
strcpy(str, "rntsoft.com");
printf("%s", str);
}
/*
rntsoft.com/