C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 14 10 1 0 14 10 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Linked list Array Stack Queue Register Linked list Array Stack Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? Depends upon the type of the variable to which it is pointing. int unsigned int No data type float Depends upon the type of the variable to which it is pointing. int unsigned int No data type float ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is syntactically and semantically correct is legal but meaningless None of these. is illegal is syntactically and semantically correct is legal but meaningless None of these. is illegal ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? start() main() printf() system() getch() start() main() printf() system() getch() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? % / * + None of these % / * + None of these ANSWER DOWNLOAD EXAMIANS APP