C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value None of these 6 0 5 Garbage Value None of these 6 0 5 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); 8 9 5 7 6 8 9 5 7 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Array Queue Register Stack Linked list Array Queue Register Stack ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 12 13 11 None of These 12 13 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 2, 2 0, 2 2, 4 2, 0 4, 4 2, 2 0, 2 2, 4 2, 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(x, 2) pow(x, 2) power(2, x) pow(2, x) sqr(x) power(x, 2) pow(x, 2) power(2, x) pow(2, x) sqr(x) ANSWER DOWNLOAD EXAMIANS APP