C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long int char float short long int char float short ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? main() system() printf() getch() start() main() system() printf() getch() start() ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? There is no difference between them. A declaration occurs once, but a definition may occur many times. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. Both can occur multiple times, but a definition must occur first. There is no difference between them. A declaration occurs once, but a definition may occur many times. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. Both can occur multiple times, but a definition must occur first. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} Syntax error 065 65 65 65 53 65 053 65 Syntax error 065 65 65 65 53 65 053 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} None of these Exam Exam\0Veda Exam Veda Veda None of these Exam Exam\0Veda Exam Veda Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() None of these strnset() strchr() strstr() strrchr() None of these strnset() strchr() strstr() ANSWER DOWNLOAD EXAMIANS APP