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;} (Solved)
1. 10hello world
2. 11hello world
3. hello world12
4. hello world13
- d. hello world13