7 lines
113 B
C
7 lines
113 B
C
#include <stdio.h>
|
|
|
|
#ifndef HALLO
|
|
#define HALLO "Hallo Welt!"
|
|
#else
|
|
printf("HALLO ist schon definiert!");
|
|
#endif
|