What are the 4 data types?
No Answer is Posted For this Question
Be the First to Post Answer
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
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
What are the advantages of union?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Compare and contrast compilers from interpreters.
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Tell me about low level programming languages.
can we print any string without using terminator?
What is c standard library?
What is difference between structure and union?
write a program to remove occurrences the word from entered text?
How can I access a memory located at certain address?