#includestdio.hint main(){int i;for(i=0; i10; ++i++){printf("Hello");}return 0;}
What is the output of the below code?#includestdio.hint main ( ){int s=50;printf ("%d",s);return 0;}
int Integer = 80;char String = 'P';System.out.print(Integer);System.out.print(String);
#includestdio.hvoid main(){int y=10, x=11;y=x++;printf("%d\n",y);printf("%d",x);}