What are the primitive data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
main() {int a=200*200/100; printf("%d",a); }
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Find Index of least significant bit set in an Integer. ex. int value is say 10001000 results should be 4.
What are the advantages of using linked list for tree construction?
What is a constant?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
What is the size of a union variable?
What is the difference between functions abs() and fabs()?
Is there anything like an ifdef for typedefs?
say the following declaration is correct nr not. int b=a,n=0;