Unit_A

Page 1

UNIT-4 Structures and Unions Q.1 What will be the output of the following program? struct { int i; float f; }var; int main() { var.i=5; var.f=9.76723; printf("%d %.2f”,var.i,var.f); return(0); } (a) Compile-Time Error (b) 5 9.76723 (c) 5 9.76 (d) 5 9.77 Q.2 What will be the output of the following program? int main() { int val=1234; int* ptr=&val; printf(“%d %d”,val,*ptr++); return(0); } (a) Compile-Time Error (b) 5 9.76723 (c) 5 9.76 (d) 5 9.77 Q.3 What will be the output of the following program? struct values { int i; float f; }; int main() { struct values var={555,67.05501}; printf(“%2d %.2f”,var.i,var.f); return(0); }


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.
Unit_A by srikanth sabbrapu - Issuu