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 is the difference between GETS();AND SCANF();
Do you know what are bitwise shift operators in c programming?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
What are type modifiers in c?
Give me the code of in-order recursive and non-recursive.
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
What is meant by 'bit masking'?
What is the purpose of realloc()?
Diff between for loop and while loop?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Can a pointer be static?
What is volatile keyword in c?