C Programming Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;} Compilation error a[0] = 3 a[0] = 2 a[1] = 3 a[1] = 2 Compilation error a[0] = 3 a[0] = 2 a[1] = 3 a[1] = 2 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, 65487 65486, 65490 65486, 65488 None of these 65486, 65486 65486, 65487 65486, 65490 65486, 65488 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? char double int float real char double int float real ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Bjarne Stroustrup Dennis Ritchie Gosling F. Codd James Dr. Bjarne Stroustrup Dennis Ritchie Gosling F. Codd James ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 None of these 1 2 3 10 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 None of these 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} None of These 11 10 9 None of These 11 10 9 ANSWER DOWNLOAD EXAMIANS APP