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 are the difference between a free-standing and a hosted environment?
Does c have function or method?
Explain setjmp()?
Can you return null in c?
Write a program to print “hello world” without using semicolon?
What is variable initialization and why is it important?
What is the difference between pure virtual function and virtual function?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
why programs in c are running with out #include
What is a macro, and explain how do you use it?
Explain the difference between ++u and u++?
What are structures and unions? State differencves between them.
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is external variable in c?