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
bBcCbBaA
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the 3 types of structures?
What is the difference between constant pointer and constant variable?
What is an expression?
how to count no of words,characters,lines in a paragraph.
How do I determine whether a character is numeric, alphabetic, and so on?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What are c preprocessors?
in iso what are the common technological language?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
write a program to generate address labels using structures?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain the term printf() and scanf() used in c language?
Explain what is the use of a semicolon (;) at the end of every program statement?
Can we access the array using a pointer in c language?