C Programming Which is the only function all C programs must contain? start() printf() getch() system() main() start() printf() getch() system() main() ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as None of these Data processing language General purpose language System programming language None of these Data processing language General purpose language System programming language 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? None of these strnset() strchr() strrchr() strstr() None of these strnset() strchr() strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning Good Good Morning M None of these Morning Good Good Morning M None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} Equal Error Unequal None of these. Equal Error Unequal None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I, II and III II and III I, III and IV I and II III and IV I, II and III II and III I, III and IV I and II III and IV ANSWER DOWNLOAD EXAMIANS APP