C Programming The default parameter passing mechanism is call by reference call by value result call by value None of these. call by reference call by value result call by value None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Forget it Error None of These Ok here Forget it Error None of These Ok here ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 None of these 14 10 1 0 None of these 14 10 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 0 1 None of these 1 0 1 1 0 0 0 1 None of these 1 0 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 45545 55445 54554 54544 45545 55445 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Examians Exam veda Exam_veda None of these Both A and B Examians Exam veda Exam_veda None of these Both A and B ANSWER DOWNLOAD EXAMIANS APP