C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} None of These i = -1, +i = -1 i = -1, +i = 1 i = 1, +i = 1 None of These i = -1, +i = -1 i = -1, +i = 1 i = 1, +i = 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 10 9 5 6 11 10 9 5 6 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Bjarne Stroustrup Dennis Ritchie Dr. F. Codd Gosling James Bjarne Stroustrup Dennis Ritchie Dr. F. Codd Gosling James 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{6} arr[7] arr[6] arr{7} None of these arr{6} arr[7] arr[6] arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 4 64 None of These 16 4 64 None of These 16 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, 65490 65486, 65486 65486, 65487 None of these 65486, 65488 65486, 65490 65486, 65486 65486, 65487 None of these 65486, 65488 ANSWER DOWNLOAD EXAMIANS APP