C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M Morning Good None of these Good Morning M Morning Good None of these Good Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 40 32 30 36 24 40 32 30 36 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all File scope Block scope Local scope Function scope No scope at all File scope Block scope Local scope Function scope 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");} p q nullp nullq Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL p q nullp nullq Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ struct xx { int x=3; char name[] = "hello"; }; struct xx *s = malloc(sizeof(struct xx)); printf("%d", s->x); printf("%s", s->name); } Compiler Error Linking error None of these 3 hello Compiler Error Linking error None of these 3 hello ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Preprocessing During Editing During Execution None of these During linking During Preprocessing During Editing During Execution None of these During linking ANSWER DOWNLOAD EXAMIANS APP