C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is None of these 215 216 – 1 216 215 – 1 None of these 215 216 – 1 216 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Acts before compilation Takes care of macros Takes care of include files Takes care of conditional compilation All of these Acts before compilation Takes care of macros Takes care of include files Takes care of conditional compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program None of these Need not contain any function. Needs input data. Must contain at least one function. None of these Need not contain any function. Needs input data. Must contain at least one function. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} nullp nullq x nullq where x can be p or nullp depending on the value of NULL Depends on the compiler p q nullp nullq x nullq where x can be p or nullp depending on the value of NULL Depends on the compiler p q ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } None of these. H Some address will be printed Hello None of these. H Some address will be printed Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Arithmetic expressions Local variables R-values Members of a structure Both of the above Arithmetic expressions Local variables R-values Members of a structure ANSWER DOWNLOAD EXAMIANS APP