#include stdio.hint *m(){int *p = 8;return p;}void main(){int *k = m();printf("%d", k);}
#include stdio.hint main(){int i = 0;do{i++;if (i == 2)continue;printf(" I'll come by ");} while (i 2);printf("%d\n", i);}
What will be the output of the following code?#includestdio.hint main ( ){char *str1="sookshmas, beyond knowing";char *str2="AIML, sookshmas";if (strcmp( str1 , str2))printf("equal");elseprintf ("unequal");}
What is the output of the following code?#includestdio.hint main(){if ( sizeof(int) -1)printf("Yes");elseprintf("no");return 0;}