This program is about copy and print the given string without using Pre-defined functions using For loops.
#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