-
-
printf("%s", obj->pName);
}
">struct Foo{ char *pName;};main(){ struct Foo *obj = malloc(sizeof(struct Foo)); clrscr(); strcpy(obj->pName,"Your Name"); printf("%s", obj->pName);}
A) NameB) compile errorC) Your NameD) Runtime error
-
}
">main(){ int i; float *pf; pf = (float *)&i; *pf = 100.00; printf("n %d", i);}
A) Some Integer not 100B) 100C) Runtime error.D) None of the aboveExplanation: Output = 0