C Programming The address operator &, cannot act on Both of the above Local variables R-values Members of a structure Arithmetic expressions Both of the above Local variables R-values Members of a structure Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 None of These 9 10 11 None of These 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} 50 10 Compiler Error None of These 50 10 Compiler Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 10 10, 10 11, 11 10, 11 11, 10 10, 10 11, 11 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Both A and B None of these Examians Exam_veda Exam veda Both A and B None of these Examians Exam_veda Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... no such function in 'C'. stdin stderr Data file string no such function in 'C'. stdin stderr Data file string ANSWER DOWNLOAD EXAMIANS APP