C examples for Preprocessor:Preprocessor Operators
Define Symbolic Constants with #define
#include <stdio.h> #define NUMBER 7 /*from w w w . j ava 2s . c o m*/ int main() { printf("\nLucky Number %d\n", NUMBER); }