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
cCbBaA
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Explain the difference between null pointer and void pointer.
What is the purpose of 'register' keyword in c language?
Why array is used in c?
Why flag is used in c?
How do you search data in a data file using random access method?
What is adt in c programming?
When would you use a pointer to a function?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Define macros.
Explain the properties of union.
Explain Function Pointer?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Find MAXIMUM of three distinct integers using a single C statement
How is a null pointer different from a dangling pointer?