[圖解C] Example 826: remove the macro instruction

// Example 826: remove the macro instruction
#include <stdio.h>
#include <stdlib.h>

#define prt printf("I love You!\n")

int main()
{
    prt;
   
    // remove the macro instruction
    #undef prt
   
    system("pause");
    return 0;
}