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 / vint
char x(char *a) // Argument Pointer declaration was missing
{
a[0]?x(a+1):1;
printf("%c",a[0]);
return 1;
}
Output: cCbBaA
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is chain pointer in c?
what are enumerations in C
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
what is the role you expect in software industry?
In C, What is the #line used for?
How can you avoid including a header more than once?
What is the difference between a string and an array?
Why is struct padding needed?
Is c is a middle level language?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Write a program to print fibonacci series using recursion?
What is a 'null pointer assignment' error?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is equivalent to ++i+++j?
Write a program which returns the first non repetitive character in the string?