C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 2 20 Linker Error Compiler Error 2 20 Linker Error Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr{7} arr[7] arr[6] arr{6} None of these arr{7} arr[7] arr[6] arr{6} ANSWER DOWNLOAD EXAMIANS APP
C Programming "My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above. printf("My salary was increased by 15%%!"); printf("My salary was increased by 15/%!"); printf("My salary was increased by 15'%'!"); printf("My salary was increased by 15%!"); printf("My salary was increased by 15%%!"); printf("My salary was increased by 15/%!"); printf("My salary was increased by 15'%'!"); printf("My salary was increased by 15%!"); ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop Compilation Error 5 4 3 2 1 None of these 5 5 5 5 5 Infinite Loop Compilation Error 5 4 3 2 1 None of these 5 5 5 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} None of These 2 Garbage Value 0 None of These 2 Garbage Value 0 ANSWER DOWNLOAD EXAMIANS APP
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]);} 6 None of these Garbage Value 0 5 6 None of these Garbage Value 0 5 ANSWER DOWNLOAD EXAMIANS APP