The #define directive


The #define directive :

A #define is a preprocessor compiler directive and not a statement. Therefore #define lines should not end with a semicolon. Symbolic constants are generally written in uppercase so that they are easily distinguished from lowercase variable names. #define instructions are usually placed at the beginning before the main() function. Symbolic constants are not declared in declared in declaration section.

Comments

Popular posts from this blog

Addition 2 number in C Language

Input and Output in C

Comments in C