C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 10 11 None of These 9 10 11 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming In C programming language, which of the following type of operators have the highest precedence Equality operators Logical operators Arithmetic operators Relational operators Equality operators Logical operators Arithmetic operators Relational operators ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by reference None of these. call by value call by value result call by reference None of these. call by value call by value result ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 6 Error 4 5 6 Error 4 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda Exam Veda None of these Exam\0Veda Exam Veda Exam Veda None of these Exam\0Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? printf() getch() main() system() start() printf() getch() main() system() start() ANSWER DOWNLOAD EXAMIANS APP