How macro execution is faster than function ?
Is null a keyword in c?
What is an volatile variable?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
whats the use of header file in c?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
What is the use of in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
List some of the static data structures in C?
Explain is it better to bitshift a value than to multiply by 2?