What is a symbolic constant?



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

Post New Answer

More C Interview Questions

What are register variables in c?

0 Answers  


Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??

4 Answers  


What kind of structure is a house?

0 Answers  


hi how to convert program from notepad to turboc editor can u please help me

3 Answers  


Are the variables argc and argv are local to main?

0 Answers   TISL,






To find whether a number is even or odd without using any conditional operator??

12 Answers   College School Exams Tests, IBM,


Why do some versions of toupper act strangely if given an upper-case letter?

0 Answers  


What does char * * argv mean in c?

0 Answers  


write a program to add two numbers of any size.....(remember any size)

1 Answers  


What is the use of c language in real life?

0 Answers  


Explain a pre-processor and its advantages.

0 Answers  


print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20

8 Answers   TCS,


Categories