C Programming Which operator has the lowest priority? ++ % || && + ++ % || && + ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? real char int double float real char int double float ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} 10..10 Error 0 10..50 10..10 Error 0 10..50 ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 110 10 -10 450 -110 110 10 -10 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 10, 10 11, 11 10, 11 11, 10 10, 10 11, 11 10, 11 11, 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 12 Compilation error 13 14 11 12 Compilation error 13 14 11 ANSWER DOWNLOAD EXAMIANS APP