Q.1.
Which of the following will copy the null-terminated string that is in array src into array dest?
Q.2.
What value does read() return when it has reached the end of a file?
Q.3.
SNOBOL is mainly used for
Q.4.
Choose a right C Statement.
Q.5.
What is the output of C Program.?
Q.6.
What is the output of C Program.?int main() { int a=do { printf("%d ", a); a++; }while(a <= 30); return}
Q.7.
What is the output of C Program.?int main() { int a=while(a >= 3); { printf("RABBIT\n"); break; } printf("GREEN"); return}
Q.8.
Choose a correct C do while syntax.