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 is develop in c language
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What is the difference between GETS();AND SCANF();
Total of how many functions are available in c?
while initialization of array why we use a[][2] why not a[2][]...?
What compilation do?
7 Answers Geometric Software, Infosys,
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
How many types of arrays are there in c?
What is typedef example?
Is null a keyword in c?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .