program for reversing a selected line word by word when
multiple lines are given without using strrev
No Answer is Posted For this Question
Be the First to Post Answer
What is a file descriptor in c?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
What are the preprocessors?
How can variables be characterized?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the meaning When we write "#include" what is # and what does include does there???
Which type of language is c?
what is dangling pointer?
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
Write a program for print infinite numbers
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Is this program statement valid? INT = 10.50;