Disadvantages of C language.
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
What are the different types of objects used in c?
What are the keywords in c?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
hi, which software companys will take,if d candidate's % is jst 55%?
Why header files are used?
For what purpose null pointer used?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
Is c still used?
WAP – represent a char in binary format
Why c is known as a mother language?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }