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
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Can we replace the struct function in tree syntax with a union?
what type of questions arrive in interview over c programming?
What are the types of data types and explain?
What are pointers? What are different types of pointers?
What is the difference between malloc() and calloc() function in c language?
Is flag a keyword in c?
State the difference between x3 and x[3].
What type of function is main ()?
Can you mix old-style and new-style function syntax?
What does it mean when a pointer is used in an if statement?
What will the preprocessor do for a program?
What are local variables c?
What are run-time errors?