C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 11 6 6 7 5 6 12 7 6 6 11 6 6 7 5 6 12 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} Garbage Value 000 333 433 444 Garbage Value 000 333 433 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language None of these General purpose language Data processing language System programming language None of these General purpose language Data processing language ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Random order Iterative order Last In First Out order First In First Out order Parallel order Random order Iterative order Last In First Out order First In First Out order 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, 65490 65486, 65488 65486, 65487 None of these 65486, 65486 65486, 65490 65486, 65488 65486, 65487 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % && ++ || + % && ++ || ANSWER DOWNLOAD EXAMIANS APP