/*Program using the #define*/ #include #define NAME "Bob Smith"/*defines the name as a character constant*/ main() { printf("%s", NAME);/*refers to the data stored in the constant and prints it*/ return; }