write a program to reverse a every alternetive words in a
string in a place.
EX: Input is "this is the line of text"
Output should be "shit is eht line fo text"
Please any one tell me code for that.
No Answer is Posted For this Question
Be the First to Post Answer
What are enumerated types?
what is the difference between strcpy() and memcpy() function?
In which header file is the null macro defined?
main() { printf(5+"Vidyarthi Computers"); }
Can we change the value of constant variable in c?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is use of integral promotions in c?
Do pointers take up memory?
what is a function pointer and how all to declare ,define and implement it ???
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
what type of language is C?
Can you think of a logic behind the game minesweeper.