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