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?
Answers were Sorted based on User's Feedback
Answer / ravi saini
Recursion based question........
Output wil be
cCbBaA
| Is This Answer Correct ? | 3 Yes | 0 No |
what is the difference between #include<stdio.h> and #include"stdio.h" ?
define switch statement?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
Can you mix old-style and new-style function syntax?
What are the back slash character constants or escape sequence charactersavailable in c?
Describe the header file and its usage in c programming?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is the restrict keyword in C?
What is the best way to comment out a section of code that contains comments?
Explain high-order bytes.
What is header file in c?