What will be the output of this code#includestdio.hint main(){while(1){printf("manjula");}return 0;}
Find the output of the following program.# includestdio.hvoid fun(int x){x = 30;}int main(){int y = 20;fun(y);printf("%d", y);return 0;}void fun(int x){x = 30;}int main(){int y = 20;fun(y);printf("%d", y);return 0;}