C Programming Which of the following is not a correct variable type? int double real float char int double real float char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 None of these 1 14 0 10 None of these 1 14 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? examians1 1examians _examians exam_veda examians1 1examians _examians exam_veda 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? break None of these continue skip resume break None of these continue skip resume ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} Syntax error NOITANIMAXE C C No output at all. NOITANIMAXE Syntax error NOITANIMAXE C C No output at all. NOITANIMAXE ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long short char int float long short char int float ANSWER DOWNLOAD EXAMIANS APP