# include stdio.hFind the output of the code :-int main( ){char s1[7] = "1234", *p;p = s1 + 2;*p = '0' ;printf ("%s", s1);}
What is the output of the following program?int main(){int i;for(i=1;i7;i++);printf("%d",i);i=9;main(i);}
int main(){char arr[5]="The CppBuzz.com";printf("%s",arr);return 0;}
#includestdio.hint main() {int m=101;printf("%d\n", m9 || 100m);return 0;}