Multiply an Integer Number by 2 Without Using Multiplication Operator
What is function prototype in c language?
What is wrong in this statement?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
to convert a string without using decrement operater and string functions
write a program without using main function?
how many keywords do C compile?
7 Answers Microsoft, Practical Viva Questions,
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is void pointers in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the difference between abs() and fabs() functions?
Derive the complexity expression for AVL tree?
Is flag a keyword in c?