My advice is tht if ur not comfortable with c,dont write subex(dont waste ur time ok!)
hi guys This is the latest question paper of subex azura. Test of location: Trivandrum question pattern C programming 20 questions (30 minutes) The following are the question i remembered.Hope it will give a clear cut idea abt subex. 1.struct { unsigned int is_keyword:1; unsigned int is_extern:1; unsigned int is_static:1; }flag; printf("%p",&flag is_static); whts is the o/p? ans: 2.1.struct { unsigned int is_keyword:1; unsigned int is_extern:1; unsigned int is_static:1; }flag; main() { printf("%d",sizeof(flag)); o/p? 3.main(int argc,char argv[]) { int i=10,j=10; const int *ptr; int *const ptr1=&j; ptr=&i; ++(*ptr); ptr1=&i; is it compile?
4.union { int ival; char ival; }u; main() { u={1,,2,}; printf("%d",sizeof(u)); } o/p? 5.int foo(void) { char *p; int i; if(i&&(*p=10)) return 1; else return 0; calling the function foo,what happened?