Q.

What will be output if you will compile and execute the following c code? #include<stdio.h>
int main(){
char *str="Hello world";
printf("%d",printf("%s",str)); return 0;
}

A. 10hello world
B. 11hello world
C. hello world12
D. hello world13
Answer» D. hello world13
3.4k
0
Do you find this helpful?
27

Discussion

No comments yet

Related MCQs