Which is better malloc or calloc?
No Answer is Posted For this Question
Be the First to Post Answer
largest Of three Number using without if condition?
What is the mean of this statement:: if(int i=0 * i=9)
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
What is far pointer in c?
What is structure in c language?
Does free set pointer to null?
Why do we need a structure?
Explain 'far' and 'near' pointers in c.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What are the 4 data types?
what is purpose of fflush(stdin) function