Minor code corrections and text clarification (#30123)
This commit is contained in:
committed by
Manish Giri
parent
31490d2b6a
commit
f2b3e2091a
@ -23,11 +23,11 @@ The `#define` keyword is used to define new macros. It's followed by a name and
|
|||||||
|
|
||||||
If you use the macro this way:
|
If you use the macro this way:
|
||||||
```C
|
```C
|
||||||
printf("Value of PI: %d", PI);
|
printf("Value of PI: %f", PI);
|
||||||
```
|
```
|
||||||
Is the same as writing this:
|
Is the same as writing this:
|
||||||
```C
|
```C
|
||||||
printf("Value of PI: %d", 3.14);
|
printf("Value of PI: %f", 3.14);
|
||||||
```
|
```
|
||||||
#### Undefining Macros
|
#### Undefining Macros
|
||||||
After defining macros you can also undefine them at any point.
|
After defining macros you can also undefine them at any point.
|
||||||
|
Reference in New Issue
Block a user