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 / roopa
bBcCbBaA
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is a example of a variable?
Explain what are the standard predefined macros?
What is the difference between if else and switchstatement
Is main an identifier in c?
is it possible to create your own header files?
What is the use of getchar() function?
How do we make a global variable accessible across files? Explain the extern keyword?
What is break statement?
What do you mean by dynamic memory allocation in c? What functions are used?
Is main a keyword in c?
Difference between MAC vs. IP Addressing
What is an expression?
Can you please explain the difference between malloc() and calloc() function?
What are the advantages and disadvantages of c language?
Explain the use of keyword 'register' with respect to variables.