C Programming For 16-bit compiler allowable range for integer constants is ________? -32668 to 32667 -32768 to 32767 -32767 to 32768 -3.4e38 to 3.4e38 -32668 to 32667 -32768 to 32767 -32767 to 32768 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} None of These Some address will be printed make an infinite loop Error None of These Some address will be printed make an infinite loop Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 0 -1 1 Compilation Error 33 0 -1 1 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming C Language developed at _________? Sun Microsystems in 1973 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1970 AT & T's Bell Laboratories of USA in 1972 Sun Microsystems in 1973 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1970 AT & T's Bell Laboratories of USA in 1972 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope No scope at all File scope Function scope Block scope Local scope No scope at all File scope Function scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 10 1 -5 15 30 10 1 -5 15 30 ANSWER DOWNLOAD EXAMIANS APP