C Programming Functions have .......... Local scope No scope at all Block scope File scope Function scope Local scope No scope at all Block scope File scope Function scope 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 Which of the following statements are correct about an array?1. The array int num[26]; can store 26 elements.2. The expression num[1] designates the very first element in the array.3. It is necessary to initialize the array at the time of declaration.4. The declaration num[SIZE] is allowed if SIZE is a macro. 1, 4 2, 4 1 None of these 2, 3 1, 4 2, 4 1 None of these 2, 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential Sequential and Random Random None of these Sequential Sequential and Random Random None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -10 10 450 110 -110 -10 10 450 110 -110 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0 Syntax error 0123456789 10 Infinite loop 0 Syntax error 0123456789 10 Infinite loop ANSWER DOWNLOAD EXAMIANS APP