main(){int i = 2;{int i = 4, j = 5;printf("%d %d", i, j);}printf("%d %d", i, j);}
#include stdio.hvoid main(){float x=10.4;if(x=10)printf("Ursa major");elseprintf("Ursa minor");}
#include stdio.hint main() {int a=5;do{printf("%d\n",a);}while(a=1);return 0;}
what will be the output of the following code?
#includestdio.hint main(){char*str="sookshmas,beyond knowing";char *str1="sookshmas,beyond knowing";if (strcmp(str,str1))printf("equal");elseprintf("unequal");}