#define should be used more often
The #define directive in C is used for creating macros, constants, and inline functions. Let's go through examples of each:
Constants using #define:
Defining a constant using #define.
#include <stdio.h>
// Define a constant
#define ...
blog.jyotiprakash.org2 min read