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
Explain how are 16- and 32-bit numbers stored?
What is array in c with example?
What is the difference between malloc() and calloc()?
Why can’t constant values be used to define an array’s initial size?
Write a program to swap two numbers without using the third variable?
How can I make it pause before closing the program output window?
Why is sizeof () an operator and not a function?
What does 1f stand for?
Explain Function Pointer?
What is sizeof int?
Explain how do you print an address?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What does == mean in texting?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How many types of functions are there in c?