Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
5 10408char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
7 14709write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43493two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
5 9341C 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 24275int 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 17951What 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 22207
What is the benefit of using #define to declare a constant?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Describe static function with its usage?
Can we declare variables anywhere in c?
Is Exception handling possible in c language?
How do I round numbers?
What is the concatenation operator?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How is a macro different from a function?
How can you convert integers to binary or hexadecimal?
What is calloc()?
Is c compiled or interpreted?
Explain the use of bit fieild.
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
How can I do graphics in c?