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 is the function of multilevel pointer in c?
Why c is a mother language?
what is the syallabus of computer science students in group- 1?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Explain how do you use a pointer to a function?
code for copying two strings with out strcpy() function.
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
write a c program to print "Welcome" without using semicolon in the whole program ??
Why header file is used in c?
What is identifiers in c with examples?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.