What the best way to define a constant in c programmining languague? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 23

What the best way to define a constant in c programmining languague?

what ixactly the difference between #define and cons ?

7th Apr 2019, 8:57 PM
Nossair el Katouri
Nossair el Katouri - avatar
11 Antworten
+ 17
If you write "#define PI 3.14", all instances of PI in the program will be replaced with 3.14 by the preprocessor before compile time. If you write "const float PI=3.14", 3.14 will be stored in memory reserved for the constant PI and used at run time.
8th Apr 2019, 5:10 AM
Sonic
Sonic - avatar
+ 11
#define is a preprocessor directive which creates a macro. 'const' is a C/C++ keyword used to create a constant variable. The usage of the latter is in general a better practice wherever applicable.
7th Apr 2019, 10:46 PM
Hatsy Rei
Hatsy Rei - avatar
+ 7
#define PI 3.14: Preprocessor replace al the occurences of "PI" with 3.14 before the program is compiled ----------------------- const float PI = 3.14: Create a variable (stored in memory) that is not modifiable
8th Apr 2019, 6:50 PM
Davide Grimaldi
Davide Grimaldi - avatar
+ 6
Const type qualifier. Object declared with const-qualified types may be placed in read-only memory by the compiler, and if the address of a const object is never taken in program, it may not be stored at all in a data segment, but only in a code/text segment. And there are two types of constants: compiler-time and run-time, so they have different behavior.
9th Apr 2019, 7:31 AM
Dima
+ 5
Nobody has mentioned about important issue connected with preprocesor directives. If You will use: #define PI 3.14 and u will write in your code statement like: PIE = PI + 2 The output after preprocessing will be like: 3.14E = 3.14 +2 ... and the error will occur. Be careful while using preprocessor directives! :) Preprocessors '#define' sees the whole code as plain TEXT, without applying any logic.
9th Apr 2019, 1:28 PM
Krzysztof Wołowiec
Krzysztof Wołowiec - avatar
+ 4
Thanks Krzych, As you pointed out, the preprocessor when invoked by #define PI 3.14 only looks at the text not the program as a whole. and this would cause strange errors as it changed all the "PI"s in your code to "3.14"s. That why you see "#define"s followed by all capital letters. and everything else is lower or mixed case letters.
10th Apr 2019, 6:31 AM
Rick Shiffman
Rick Shiffman - avatar
+ 2
U can actually use a preprocessor directory i.e #define (variable) (constant value) So the whole code will consider the variable as a contant... For example #define PI 3.14 Note: keep in mind that once the constant is defined then u CANNOT change its value throughout the code...
9th Apr 2019, 3:42 PM
Khuzaima A.
Khuzaima A. - avatar
+ 1
ymy
28th Jun 2019, 12:59 PM
mohammad
0
#define PI 3.14; this allows you to access it's value while making const the value got fixed and stored in memory for further access
9th Apr 2019, 8:02 PM
abhijit
abhijit - avatar
0
#define value or const value
10th Apr 2019, 7:17 PM
Mohammad Minhaz Uddin
Mohammad Minhaz Uddin - avatar
0
#define pi=3.1416
28th Jun 2019, 6:36 PM
Mohammad Minhaz Uddin
Mohammad Minhaz Uddin - avatar