What is the hardest programming language?
When should the volatile modifier be used?
Is swift based on c?
C 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
Why doesn't C support function overloading?
write a program to display all prime numbers
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
whether itis a structured language?
Why can’t we compare structures?
What is the use of putchar function?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
how to impliment 2 or more stacks in a single dimensional array ?
what is the disadvantage of using macros?