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
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
code for reverse alternate words from astring
Can the “if” function be used in comparing strings?
How will you delete a node in DLL?
What's wrong with "char *p; *p = malloc(10);"?
Why c is procedure oriented?
Is struct oop?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
How to reverse a string using a recursive function, with swapping?
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings