C program to copy the given string
kw.c
#include <stdio.h>
#include <string.h>
int main()
{
    char s1[20] = "Hello, World!";
    char s2[20];
    printf("———————————————————————————————————————————");
    printf("\nProgram to copy the given string");
    printf("\n———————————————————————————————————————————");
    printf("\nInput string %s ", s1);
    strcpy(s2, s1);

    printf("\n\nThe copied string is %s ", s2);
    printf("\n———————————————————————————————————————————\n");
    return 0;
}
Output
kodingwindow@kw:~$ gcc kw.c
kodingwindow@kw:~$ ./a.out ——————————————————————————————————————————— Program to copy the given string ——————————————————————————————————————————— Input string Hello, World! The copied string is Hello, World! ——————————————————————————————————————————— kodingwindow@kw:~$
Advertisement