C Programming For 16-bit compiler allowable range for integer constants is ________? -3.4e38 to 3.4e38 -32767 to 32768 -32668 to 32667 -32768 to 32767 -3.4e38 to 3.4e38 -32767 to 32768 -32668 to 32667 -32768 to 32767 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope File scope No scope at all Local scope Function scope Block scope File scope No scope at all Local 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 What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 5 6 8 7 9 5 6 8 7 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 1 14 None of these 0 10 1 14 None of these 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 5 6 7 None of these 4 5 6 7 None of these 4 ANSWER DOWNLOAD EXAMIANS APP