C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 5 0 7 Compiler Error 6 5 0 7 Compiler Error 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Execution During Preprocessing During Editing None of these During linking During Execution During Preprocessing During Editing None of these During linking 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 definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a definition must occur first. A declaration occurs once, but a definition may occur many times. Both can occur multiple times, but a declaration must occur first. There is no difference between them. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a definition must occur first. A declaration occurs once, but a definition may occur many times. Both can occur multiple times, but a declaration must occur first. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. I, II and III II, III and IV II and III I, II, III and IV I and II I, II and III II, III and IV II and III I, II, III and IV I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? / None of these % + * / None of these % + * 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() strstr() strrchr() None of these strnset() strchr() strstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP