What is a symbolic constant?
Answer / venkata mahesh
We can define constants of any type by using the #define
compiler directive. Its syntax is simple--for instance
#define ANGLE_MIN 0
#define ANGLE_MAX 360
would define ANGLE_MIN and ANGLE_MAX to the values 0 and
360, respectively. C distinguishes between lowercase and
uppercase letters in variable names. It is customary to use
capital letters in defining global constants.
| Is This Answer Correct ? | 1 Yes | 3 No |
Explain #pragma in C.
How can I remove the trailing spaces from a string?
void main() { int a=1; while(a++<=1) while(a++<=2); }
wap to print "hello world" without using the main function.
what is the difference between declaration ,defenetion and initialization of a variable?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
write a program for odd numbers?
Is there a built-in function in C that can be used for sorting data?
write a program to print calender using for loop.
Why the use of alloca() is discouraged?
What is #include stdio h?
What is the use of define in c?