Interview Questions on Fundamental of C Language set-8
1) The control automatically passes the first statement after the loop in .. A. Continue statement B. Break statement C. Switch statement D. If statement 2) Which of the following is a scalar data type? A. Float B. Union C. Array D. Pointer 3) The given FOR loop is .. for( ; ; ) { printf(" "); } A. valid B. invalid C. indefinite D. displays runtime error 4) In C, a union is ...... A. memory location B. memory store C. memory screen D. memory space 5) The ......... statement causes immediate exit from the loop overriding the condition test .. A. Exit B. Break C. Goto D. None of the above 6) Pointers are of .......... A. integer data type B. character data type C. unsigned integer data type D. None of these 7) The keyword used to transfer control from a function back to the calling function is ... A. switch B. goto C. go back D. return 8) Identify the invalid pointer arithmetic ...... A. addition of float value to a pointer B. comparison of pointers that do not point to the...