C Programming Which of the following operator takes only integer operands? None of these / * % + None of these / * % + ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 10 12 11 15 10 12 11 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James Dr. Gosling Dennis Ritchie Bjarne Stroustrup F. Codd James Dr. Gosling Dennis Ritchie Bjarne Stroustrup F. Codd ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value result call by value call by reference None of these. call by value result call by value call by reference None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 5 0 100 100 100 100 100 0 100 100 5 100 5 0 20 5 0 100 100 100 100 100 0 100 100 5 100 5 0 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program? #include\ int main(){ extern int i; i = 20; printf("%ld ", sizeof(i)); return 0; } Linker Error : Undefined symbol 'i' 4 Depends on the Compiler 2 Linker Error : Undefined symbol 'i' 4 Depends on the Compiler 2 ANSWER DOWNLOAD EXAMIANS APP