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;
}1. 10hello world
2.11hello world
3. hello world12
4.hello world13
Posted Date:-2022-07-06 13:39:56