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?
Answers were Sorted based on User's Feedback
Answer / ravi saini
Recursion based question........
Output wil be
cCbBaA
| Is This Answer Correct ? | 3 Yes | 0 No |
What's wrong with "char *p; *p = malloc(10);"?
What is the difference between exit() and _exit()?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
Write a code to determine the total number of stops an elevator would take to serve N number of people.
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
Explain what are compound statements?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
How to implement a packet in C
what is the difference between definition and declaration? give me some examples.
Where does the name "C" come from, anyway?
What does it mean when a pointer is used in an if statement?