Answered Questions

  • How to reverse a sentence with C program.

    A MANIKUMAR

    • Dec 11th, 2015

    Example to reverse a sentence entered by user without using strings."c /* Example to reverse a sentence entered by user without using strings. */ #include void Reverse(); int...

    ARKAJIT NANDY

    • Aug 2nd, 2015

    "c #include #include #include int main() { char st[50], rst[50]; printf("Enter the sentence... "); gets(st); int len=strlen(st), p; int j=-1,k; p=len; for(int i=(...