Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program For String Reverse

void main()

{

char n[50],j,i=0;

clrscr();

printf("OUTPUT\n");

printf("------");

printf("Enter String:\n");

printf("The Reverse Of The Given String is\n");

printf("**********************************");

while((n[i]=getchar())!='\n')i++;

for(j=i-1;j>=0;j--)

{

printf("%c",n[j]);

}

getch();

}

Download All C Programming & Study Materials PDF