Why is c called "mother" language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain enumerated types in c language?
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
Is it better to bitshift a value than to multiply by 2?
Subtract Two Number Without Using Subtraction Operator
using for loop sum 2 number of any 4 digit number in c language
How can I read in an object file and jump to locations in it?
write a program for egyptian fractions in c?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
What are two dimensional arrays alternatively called as?
How can I find leaf node with smallest level in a binary tree?
Is c compiled or interpreted?
why do some people write if(0 == x) instead of if(x == 0)?