Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
5 10051char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 14177write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 42732two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 8961C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
6 23851int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
10 17289What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
5 21781
What is the difference between scanf and fscanf?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Explain what is #line used for?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Explain what’s a signal? Explain what do I use signals for?
What is the purpose of the statement: strcat (S2, S1)?
How to set file pointer to beginning c?
What is 2c dna?
What are directives in c?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What are the data types present in c?
Explain what is gets() function?
Where in memory are my variables stored?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures