C Programming Which of following is not a valid name for a C variable? None of these Both A and B Exam_veda Examians Exam veda None of these Both A and B Exam_veda Examians Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 13 14 12 11 Compilation error 13 14 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} p q Depends on the compiler nullp nullq x nullq where x can be p or nullp depending on the value of NULL p q Depends on the compiler nullp nullq x nullq where x can be p or nullp depending on the value of NULL ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure Arithmetic expressions R-values Both of the above Local variables Members of a structure Arithmetic expressions R-values Both of the above Local variables ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? -1 2 Program do no return a value. 1 -1 2 Program do no return a value. 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed None of These H Hello Some Address will be printed None of These H Hello ANSWER DOWNLOAD EXAMIANS APP