C Programming Which of following is not a valid name for a C variable? Both A and B Exam veda Exam_veda None of these Examians Both A and B Exam veda Exam_veda None of these Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Combining two strings. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed Error make an infinite loop None of These Some address will be printed Error make an infinite loop None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() printf() main() start() getch() system() printf() main() start() getch() ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 13 Compilation error 12 14 11 13 Compilation error 12 14 11 ANSWER DOWNLOAD EXAMIANS APP