answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What are Advantage of use symbolic constant?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are symbolic constants?

A symbolic constant is a constant with a name, numeric constants are unnamed and must be retyped in the code on each usage. Generally use of symbolic constants is preferred as it makes the code self documenting and allows the compiler to catch typing errors in constant usage.


What advantage are there in defining an array size in term of symbolic constant rather than a fixed integer value?

It may be possible to generalise results to other integer values.


What is the symbolic meaning of sprengeri fern?

constant love


How does incumbency advantage add up?

Incumbency has advantage in that the government in power has the resource of the state or nation in his custody and can use to maximum is in Constant touch with the people and will use that to win them over.


What is an advantage of a solid?

Constant size & shape.


Is the mechanical advantage a constant value or can it be made to vary?

The mechanical advantage is a numerical relationship among the sizes of physical components of the machine. It's constant as long as the sizes of those parts of the machine are constant.


Does the first amendment protect Symbolic speech?

Yes, but to a certain extent. When people take advantage of symbolic speech, the First Amendment does not protect symbolic speech. They can consider symbolic speech as a right to say whatever they want, which can violate people's safety and protection, as well as policies. But having the right to speak freely about your opinion and convictions is a privilege and will be taken away if you take advantage of it.


What does a priest use for use in symbolic rituals of purification?

water


What are the advantages of using a symbolic constant rather than a literal constant in c plus plus?

The main two I can think of:It gives more meaning to the constant. eg using PI instead of 3.14159 makes it easier to understand what's going on when calculating things like a = PI * r * r;Should the constant for the program need to be changed, only one occurrence needs to be changed (in a header file) instead of all usages.


What is an advantage of being warmblooded?

An advantage is that you don't have to rely on the sun's warmth for your body heat.


Why is no red allowed to show when the American flag is folded?

Red is symbolic for the bloodshed and because it is a constant reminder of the loss and pain it is not shown.


What is a symbolic constant in c language?

symbolic constants are constants represented by symbols.... constants are values that does not change through out the program execution. e.g #include<stdio.h> #include<conio.h> #define NUM 15 void main() { int a=NUM; printf("The constant is %d",a); getch(); } here #define is a preprocessor. its job is to replace all the entries named NUM as 15. So that the compiler works with the constant 15...