C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Infinite loop 0 10 Syntax error 0123456789 Infinite loop 0 10 Syntax error 0123456789 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. None of these Sequential and Random Sequential Random None of these Sequential and Random Sequential Random ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 None of these 1 1 1 0 0 0 0 1 None of these 1 1 1 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65486 65486, 65488 65486, 65490 None of these 65486, 65487 65486, 65486 65486, 65488 65486, 65490 None of these 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 065 65 Syntax error 053 65 53 65 65 65 065 65 Syntax error 053 65 53 65 65 65 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, 4 2, 2 2, 0 0, 2 4, 4 2, 4 2, 2 2, 0 0, 2 ANSWER DOWNLOAD EXAMIANS APP