C Programming C preprocessor Takes care of include files Takes care of macros Acts before compilation All of these Takes care of conditional compilation Takes care of include files Takes care of macros Acts before compilation All of these Takes care of conditional compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. The same as int *p[ None of these. p is one dimensional array of size 5, of pointers to integers. p is a pointer to a 5 elements integer array. The same as int *p[ None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Enhances the logical clarity of the program. Makes the debugging task easier. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45545 54544 55445 54554 45545 54544 55445 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these General purpose language Data processing language System programming language None of these General purpose language Data processing language System programming language 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); }} Run time error 10 20 10 10 20 20 Run time error 10 20 10 10 20 20 ANSWER DOWNLOAD EXAMIANS APP