What is the difference between specifying a constant variable
like with constant keyword and #define it? i.e what is the
difference between CONSTANT FLOAT A=1.25 and #define A 1.25
No Answer is Posted For this Question
Be the First to Post Answer
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Why c is called top down?
What does the message "automatic aggregate intialization is an ansi feature" mean?
How many keywords are there in c?
Explain union. What are its advantages?
How do I copy files?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
How can you convert integers to binary or hexadecimal?
How can I read in an object file and jump to locations in it?
how to find turn around time in operating system?
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
How do c compilers work?