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
Explain what is gets() function?
What is hashing in c?
What are categories used for in c?
How does selection sort work in c?
Explain what is the difference between a string and an array?
What is the heap in c?
Where does the name "C" come from, anyway?
What are enumerated types?
Explain what is page thrashing?
what value is returned to operating system after program execution?
What is pointers in c with example?
How can I split up a string into whitespace-separated fields?
What is the difference between the expression “++a” and “a++”?
What is restrict keyword in c?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..