C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 5 Compiler Error Garbage Value 6 5 Compiler Error Garbage Value 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? float char real int double float char real int double ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 0 14 1 10 0 14 1 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 6 5 10 9 11 6 5 10 9 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of conditional compilation Takes care of include files All of these Takes care of macros Acts before compilation Takes care of conditional compilation Takes care of include files All of these Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. 0 ASCII value of the input read. 1 The number of successful read input values. The actual values read for each argument. 0 ASCII value of the input read. 1 The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP