Is c pass by value or reference?
No Answer is Posted For this Question
Be the First to Post Answer
When should the volatile modifier be used?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.
What's a good way to check for "close enough" floating-point equality?
Why is #define used?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
What is the use of getch ()?
What are the types of arrays in c?
Can you write the function prototype, definition and mention the other requirements.
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
What is the use of define in c?
What are types of functions?
What is pragma in c?