Answers for "Write a program using strcpy char array in c with example"

C
0

Write a program using strcpy char array in c with example

#include<stdio.h>#include<string.h>int main(){char s1[10], s2[10];strcpy(s1, "noteshippo.com"); strcpy(s2, s1); printf("%s\n", s2);return(0);}
Posted by: Guest on June-23-2021

Code answers related to "Write a program using strcpy char array in c with example"

Code answers related to "C"

Browse Popular Code Answers by Language