Explain what are the standard predefined macros?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the benefit of using #define to declare a constant?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
What is malloc and calloc?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How do I get an accurate error status return from system on ms-dos?
what is the difference between malloc() and calloc() function?
Find MAXIMUM of three distinct integers using a single C statement
how to print value of e(exp1)up to required no of digits after decimal?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Which is the memory area not included in C program? give the reason
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what is the use of a array in c