What is the use of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is pivot in c?
What is a example of a variable?
where are auto variables stored? What are the characteristics of an auto variable?
Is there a way to compare two structure variables?
What is the difference between calloc() and realloc()?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is an expression?
p*=(++q)++*--p when p=q=1 while(q<=6)
Why doesn't C support function overloading?
Is c procedural or functional?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175