C Programming :: Structures, Unions, Enums
-
Point out the error in the program?
struct emp { int ecode; struct emp *e; };
-
Point out the error in the program?
typedef struct data mystruct; struct data { int x; mystruct *b; };
-
Point out the error in the program?
#include
int main() { struct a { float category:5; char scheme:4; }; printf("size=%d", sizeof(struct a)); return 0; } -
Point out the error in the program?
struct emp { int ecode; struct emp e; };
-
Point out the error in the program?
#include
-
Point out the error in the program?
#include
-
Point out the error in the program in 16-bit platform?
#include
-
Point out the error in the program?
#include
int main() { union a { int i; char ch[2]; }; union a z1 = {512}; union a z2 = {0, 2}; return 0; } -
Point out the error in the program?
#include
int main() { struct emp { char n[20]; int age; }; struct emp e1 = {"Dravid", 23}; struct emp e2 = e1; if(e1 == e2) printf("The structure are equal"); return 0; } -
Point out the error in the program?
#include