write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Answer Posted / rprabhakaranmca
INPUT:HI Hi welcome to Citrisus
OUTPUT;Citrisus to Welcome Hi
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is a stream in c programming?
What is auto keyword in c?
Write a code to generate divisors of an integer?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What is malloc return c?
Difference between Function to pointer and pointer to function
What is difference between structure and union with example?
Why do we use main function?
What is volatile variable how do you declare it?
Is c high or low level?
How will you delete a node in DLL?
What is string function in c?
What do the functions atoi(), itoa() and gcvt() do?