C Programming Which one of the following is not a valid identifier? exam_veda examians1 1examians _examians exam_veda examians1 1examians _examians 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 skip None of these continue resume break skip None of these continue 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, III and IV I, II and III II, III and IV II and III I and II I, II, III and IV I, II and III II, III and IV II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order First In First Out order Last In First Out order Iterative order Random order Parallel order First In First Out order Last In First Out order Iterative order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 12 None of These 11 13 12 None of These 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hj grjeodt None of These ij!gsjfoet hi friends hj grjeodt None of These ij!gsjfoet hi friends ANSWER DOWNLOAD EXAMIANS APP