Define Macro: TRUE and FAlSE
#include <stdio.h> /* For input and output */
#define TRUE 1 /* Defines the symbol TRUE */
#define FALSE 0 /* Defines the symbol False */
void main()
{
int correct = TRUE; /* By default indicates correct sequence entered */
printf("%s\n", correct? "Correct!" : "Wrong!");
}
Related examples in the same category