write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Answer / rprabhakaranmca
INPUT:HI Hi welcome to Citrisus
OUTPUT;Citrisus to Welcome Hi
| Is This Answer Correct ? | 0 Yes | 3 No |
What does 3 mean in texting?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
WAP to find that given no is small or capital
What will happen when freeing memory twice
Write a program for print infinite numbers
Is main() function predfined or userdefined?
What is #pragma statements?
Can you write a programmer for FACTORIAL using recursion?
What is the difference between typedef struct and struct?
How can I get back to the interactive keyboard if stdin is redirected?
How do you use a pointer to a function?
Why is c not oop?