C Programming Which of following is not a valid name for a C variable? Examians Both A and B None of these Exam veda Exam_veda Examians Both A and B None of these Exam veda Exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} None of These Some address will be printed Error make an infinite loop None of These Some address will be printed Error make an infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 30 10 -5 15 1 30 10 -5 15 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? % && ++ || + % && ++ || + ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 10 10 20 20 10 20 Run time error 10 10 20 20 10 20 Run time error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 1..1 0..1 0..0 1..0 1..1 0..1 0..0 1..0 ANSWER DOWNLOAD EXAMIANS APP