The program is a simple C program that uses the strcpy function from the string.h library to copy a string from one character array to another.
Here's how the program works:
#include<stdio.h> #include<string.h> int main() { char a[100],b[100]; printf("\nEnter the String:"); gets(a); strcpy(b,a); puts(b); return 0; }To download raw file Click Here
Enter the String:Tutor Joe's Tutor Joe's
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions