C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} 1 Error -2 2 1 Error -2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? main case auto default register main case auto default register ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % ++ && || + % ++ && || ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 0 infinity loop 3 2 1 no output 3 2 1 0 infinity loop 3 2 1 no output ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 3 7 7 3 8 3 None of these 3 8 3 7 7 3 8 3 None of these 3 8 ANSWER DOWNLOAD EXAMIANS APP