Why do we use return in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What are the advantages of union?
Is there any book to know about Basics of C Language?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
What is the importance of c in your views?
What is difference between && and & in c?
What is wild pointer in c?
Why c is a procedural language?
Why main function is special give two reasons?
Determine if a number is a power of 2 at O(1).
what is diference between return 0 and return NULL??
What is %s and %d in c?