This program is a C program to copy the contents of one string (a) to another string (b). It starts by reading in a string (a) from the user using the gets function. The contents of a are then displayed using the puts function.
The for loop is used to copy the characters of a to b. It loops over each character in a until it encounters a null character, indicating the end of the string. The characters are copied from a to b by assigning each character from a to the corresponding index in b.
Finally, a null character is added to the end of b to indicate the end of the string. The contents of b are then displayed using the printf function.
#include<stdio.h> int main() { int i; char a[100],b[100]; printf("\nEnter the First String:"); gets(a); printf("\nGiven First String:"); puts(a); for(i=0;a[i]!='\0';i++) { b[i]=a[i]; } b[i]='\0'; printf("\nCopy Value is:%s",b); return 0; }To download raw file Click Here
Enter the First String:Tutor Joe's Given First String:Tutor Joe's Copy Value is:Tutor Joe's
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions