strcpy Function
Syntax:
char *strcpy(char *str1, const char *str2);
Example:
#include <string.h>
#include <stdio.h>
int main(){
  char str[80];
  strcpy(str, "hello");
  printf("%s", str);
return 0;
}
 Back
char *strcpy(char *str1, const char *str2);
#include <string.h>
#include <stdio.h>
int main(){
  char str[80];
  strcpy(str, "hello");
  printf("%s", str);
return 0;
}
 Back