Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
5 8973char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 12659write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 40337two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 7758C 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 22464int 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 15461What 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 20198
What kind of structure is a house?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Can you tell me how to check whether a linked list is circular?
Tell me about low level programming languages.
Differentiate Source Codes from Object Codes
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Does c have enums?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Can a void pointer point to a function?
What is external variable in c?
What is function pointer c?
What is the difference between text files and binary files?
What does typedef struct mean?
develop algorithms to add polynomials (i) in one variable
Do variables need to be initialized?