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
cba
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a function simple definition?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is the use of header?
What is volatile variable how do you declare it?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is masking?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
How many identifiers are there in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
How many levels of pointers can you have?
What does it mean when the linker says that _end is undefined?
What is use of null pointer in c?
a program that can input number of records and can view it again the record
What is quick sort in c?
What is a nested loop?