MIPI_BaseC_WebinarFRTK/12_Lecture12/04_macros_degug_p27.c

12 lines
138 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
#define ONE printf ("DEBUG\n")
#define TWO ONE; ONE
#define FOUR TWO; TWO
int main(void)
{
FOUR;
return 0;
}