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 / fazlur rahaman naik
the output will b cCbBaA
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the meaning of 2d in c?
What does %c mean in c?
How variables are declared in c?
Write the control statements in C language
Why does not c have an exponentiation operator?
Which one would you prefer - a macro or a function?
What are the 4 types of programming language?
What is meant by int main ()?
Can a file other than a .h file be included with #include?
Is there a way to compare two structure variables?
What are comments and how do you insert it in a C program?
while initialization of array why we use a[][2] why not a[2][]...?
What is gets() function?
What is the difference between near, far and huge pointers?
Explain what is the use of a semicolon (;) at the end of every program statement?