C Programming C was primarily developed as General purpose language System programming language None of these Data processing language General purpose language System programming language None of these Data processing language ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ % + || && ++ % + || && ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} a = 4, c = 8 a = 3, c = 8 b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 a = 4, c = 8 a = 3, c = 8 b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 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, 65488 65486, 65487 65486, 65490 65486, 65486 None of these 65486, 65488 65486, 65487 65486, 65490 65486, 65486 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? int char real float double int char real float double ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Some address will be printed. Error Will make an infinite loop. None of these. Some address will be printed. Error Will make an infinite loop. None of these. ANSWER DOWNLOAD EXAMIANS APP