C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed None of These make an infinite loop Error Some address will be printed None of These make an infinite loop Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 Infinite loop None of these 10 11 12 13 14 9 10 11 12 13 10 11 12 13 14 15 Infinite loop None of these 10 11 12 13 14 9 10 11 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } hai haasi None of these asiha absiha hai haasi None of these asiha absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order Last In First Out order Parallel order First In First Out order Random order Iterative order Last In First Out order Parallel order First In First Out order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 1 0 The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Conditional operator Unary-operator Assignment operator Comma operator Division operator Conditional operator Unary-operator Assignment operator Comma operator ANSWER DOWNLOAD EXAMIANS APP