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
Explain how can a program be made to print the name of a source file where an error occurs?
What are the features of c language?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
what is the function of pragma directive in c?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What are the __date__ and __time__ preprocessor commands?
Why c is faster than c++?
When should the const modifier be used?
How can I remove the trailing spaces from a string?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What are valid operations on pointers?
What is the scope of global variable in c?
How do you override a defined macro?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;