61 Predict the output: int main() { struct shark { int b; #define selva() b }s; s.selva() =4; printf ("%d",s.b); return 0; }... Read More
43 typedef struct ss { char *a; long b; double c; }srs; int main() { srs r,*s; s=&r; s+=4; printf("%d",s); return 0; } Question: ... Read More