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 is the default value of local and global variables in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Explain what are the different data types in c?
The statement, int(*x[]) () what does in indicate?
What are types of preprocessor in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What are pragmas and what are they good for?
Tell us two differences between new () and malloc ()?
Explain output of printf("Hello World"-'A'+'B'); ?
program for reversing a selected line word by word when multiple lines are given without using strrev
What are local variables c?
How would you obtain the current time and difference between two times?
What is clrscr in c?
What is structure in c explain with example?