If "AaBbCc" is passed to the char
char x(*a)
{
a[0]?x(a+1):1;
printf("%c",a[0]);
return 1;
}
what will be the output?
Answer Posted / ravi saini
Recursion based question........
Output wil be
cCbBaA
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
All technical questions
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is the usage of the pointer in c?
What is spaghetti programming?
How can I swap two values without using a temporary?
What are the Advantages of using macro
Explain what is the use of a semicolon (;) at the end of every program statement?
Explain the difference between ++u and u++?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is the meaning of c in c language?
List the variables are used for writing doubly linked list program.
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Why & is used in scanf in c?