C Programming :: Structures, Unions, Enums
-
What will be the output of the program ?
#include
-
What will be the output of the program ?
#include
int main() { struct value { int bit1:1; int bit3:4; int bit4:4; }bit={1, 2, 13}; printf("%d, %d, %d\n", bit.bit1, bit.bit3, bit.bit4); return 0; } -
What will be the output of the program in 16 bit platform (Turbo C under DOS) ?
#include
-
What will be the output of the program ?
#include
int main() { enum days {MON=-1, TUE, WED=6, THU, FRI, SAT}; printf("%d, %d, %d, %d, %d, %d\n", MON, TUE, WED, THU, FRI, SAT); return 0; } -
What will be the output of the program ?
#include
-
What will be the output of the program ?
#include
-
What will be the output of the program in Turbo C (under DOS)?
#include
-
What will be the output of the program in 16-bit platform (under DOS)?
#include
-
What will be the output of the program ?
#include
int main() { enum days {MON=-1, TUE, WED=6, THU, FRI, SAT}; printf("%d, %d, %d, %d, %d, %d\n", ++MON, TUE, WED, THU, FRI, SAT); return 0; } -
What will be the output of the program ?
#include
struct course { int courseno; char coursename[25]; }; int main() { struct course c[] { {102,"Java"}, {103, "PHP"}, {104,"DotNet"}; printf("%d ", c[1].courseno); printf("%s\n", (*(c+2)).coursename); return 0; }