C Programming Which is the only function all C programs must contain? system() printf() getch() main() start() system() printf() getch() main() start() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? It associates from the right The operand can come before or after the operator It is a unary operator All of these It cannot be applied to an expression It associates from the right The operand can come before or after the operator It is a unary operator All of these It cannot be applied to an expression ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Merging two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} make an infinite loop Some address will be printed Error None of These make an infinite loop Some address will be printed Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M Good Good Morning None of these Morning M Good Good Morning None of these Morning ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume break continue skip None of these resume break continue skip None of these ANSWER DOWNLOAD EXAMIANS APP