answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

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

Coding constants in c?

Coding constants in c means writing the constants in a certain way that the c language understands.


What are functions in c language?

constants, MAX_(function), etc.


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


What is meant by pointers in c language?

Variables (or constants) that contain addresses.


What are numeric constants in c language?

examples: 1, -2, 3.15, 0xabcd


Is c sharp scripting language?

What is a scripting language? If you know the answer to this, then you can determine C# fits to the definition or not.


Am reading the C programming language and I'm curious about this questionwhy Dennis MRitchie not let us to put a semicolon after a Symbolic Constants definition?

A symbolic constant is a macro definition - a command to the preprocessor - and not an actual part of the language. Everything following the #define symbol tokens, up to and not including the line terminator, is part of the macro. Since a macro is intended to replace a literal symbol, possibly in a complex expression, you would not necessarily want a semicolon as part of the literal expression, because that would terminate processing of the line.Note: the preprocessor is a separate program, which runs before the actual compilation; it has its own syntax, which is different from that of the compiler.


What is the meaning of identifiers in c language?

The NAMES that identify or represent the variables, constants, data types, functions and labels in C language.. They are mere(only) NAMES, that help in IDENTIFYING variables, data types, constants, functions and labels to differentiate them from each other.. A good identifier must be descriptive but short..


What are the different types of integer constants in c language?

Well, uh, const unsigned int and const signed int..


What is headderfile in c language?

Header File in C/C++ are the files which contains the definition of the pre-defined functions, data-types & constants, etc. By adding the header file you reduce your job of defining the same functions which are defined earlier by someone else & you can use those functions/data-types easily.


How do you declare symbolic constants in Java?

Symbolic constants are named constants like : final double PI = 3.14 ; They are constants because of the 'final' keywords, so they canNOT be reassigned a new value after being declared as final And they are symbolic , because they have a name A NON symbolic constant is like the value of '2' in expression int foo = 2 * 3


Definition of directories in c?

Directories have nothing to do with a programming language.