C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume None of these skip break continue resume None of these skip break continue ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} h hi hi followed by garbage value Error Garbage Value h hi hi followed by garbage value Error Garbage Value 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 I, III and IV III and IV II and III I and II I, II and III I, III and IV III and IV II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 5 8 6 9 7 5 8 6 9 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Array Register Queue Linked list Stack Array Register Queue Linked list ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is syntactically and semantically correct None of these. is illegal is legal but meaningless is syntactically and semantically correct None of these. is illegal is legal but meaningless ANSWER DOWNLOAD EXAMIANS APP