#include stdio.hint main(){int i=5;i = ++i*i;if(i==36){i;printf("%d\n",i);}elseprintf("%d\n",i*0);return 0;}
#x=2/0What will be the output of this python codetry:x=2/0Except ZeroDivideError:Print ("exception handled")
#includestdio.h#includestring.hstruct bodydetails{float height;float weight;char name[50];};int main(){struct bodydetails bd[100];bd[0].height=6.0;bd[0].weight=48.0;strcpy(bd[0].name, "dhanush");printf("name=%s\nheight=%f\nweight=%f\n",bd[0].name,bd[0].height,bd[0].weight);return 0;}
Predict the output of the following code?#includestdio.hvoid main (){int i=0;do{Printf ("sookshmas");}while (i!=0);}
b=5def fun():b=10print(b)fun()print(b)