Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
5 10253char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 14480write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43158two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 9179C 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 24083int 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 17683What 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 22015
What is the advantage of c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is sizeof int in c?
Describe the difference between = and == symbols in c programming?
How are portions of a program disabled in demo versions?
What does nil mean in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
How do I create a directory? How do I remove a directory (and its contents)?
What are the benefits of organizational structure?
Can the size of an array be declared at runtime?
Why c is a mother language?
Explain what are the advantages and disadvantages of a heap?
Is return a keyword in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
How can I convert a number to a string?