answersLogoWhite

0


Best Answer

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...

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a symbolic constant in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is literal in c language?

a string constant


What is the constant in C programming language?

Anything declared as a constant.


What is 10.1455785 in c language?

A floating point constant value.


What is the definition of symbolic constants in c language?

constants are values that does not chnage through out the program exceution..


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 is the mean of switch in c language?

switch is a mechanism provided in the C language through which we can select one among various constant option based on value of a single event.


What is the symbolic meaning of sprengeri fern?

constant love


Figurative language is language with a literal meaning and a meaning.?

symbolic


Figurative language is language with a literal meaning and a meaning?

Actually, figurative language uses words in a non-literal way to create a deeper or more unique meaning. It includes devices like simile, metaphor, and personification, which help convey abstract ideas or emotions in a more creative or vivid manner.


What is a constant variables in c language?

It are a variable you add modifer 'const' to. It means these variable mustn't be modified.


Who developed the first form of your abstract symbolic language?

It was Aristotle whom developed the first ever abstract symbolic language. Some philosophers call this language Aristotelian logic.


What do you mean by constant in c language?

Constant in C means the content whose value does not change at the time of execution of a program.There are several types of constants $ they are i>numeric->a.INTEGER b.REALii>character->a.SINGLE CHARACTER b.STRING.Hope this will help you.