what will be printed by this printf?
printf("%c",printf("hi")["sharkselva"]));
}
Answers were Sorted based on User's Feedback
Answer / vadivelt
Ans: hia
Reason is, in the below statement,
printf("%c",printf("hi")["sharkselva"]));
printf("hi") shall be executed first. and this printf will
return the value 2. ie., no of characters successfully
printed by printf()statement.
So in runtime, "printf("%c",printf("hi")["sharkselva"]));"
will print "hi" and after, the main printf shall be
replaced as "printf("%c",2["sharkselva"]));".
According to printf() implementation, printf("%c",2
["sharkselva"]));" has to print the value at the array, for
the index given ie., 2. So in the array index '2',
character 'a' is available.
Now a is printed.
So the total output will be -> hia
Is This Answer Correct ? | 31 Yes | 1 No |
void main() { int a=1; while(a++<=1) while(a++<=2); }
write a program to print the one dimensional array.
What is typedef example?
What is sizeof in c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Explain spaghetti programming?
why we shiuld use main keyword in C
Why isnt any of this standardized in c?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Why is c so popular?
main() { int i=400,j=300; printf("%d..%d"); }
What is #include in c?