How to reverse alternate words in a given line of string
For Eg: my name is narasimha
output : my eman is ahmisaran
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of linkage exist in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
about c language
c pgm count no of lines , blanks, tabs in a para(File concept)
What is a pointer variable in c language?
Why is c known as a mother language?
Explain modulus operator.
Explain how are portions of a program disabled in demo versions?
What are the parts of c program?
How can we allocate array or structure bigger than 64kb?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }