What is hashing in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of extern in c?
How can I trap or ignore keyboard interrupts like control-c?
What functions are in conio h?
How do I read the arrow keys? What about function keys?
pascal triangle program
What is null in c?
Why is sizeof () an operator and not a function?
What is structure and union in c?
Why cd or dvd are round why not square.
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
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