#define MAX 50 #include <stdio.h> int main() { #if MAX > 100 printf( ”Yli sata\n” ); #else printf( ”Alle sata\n” ); #endif getch(); return 0; }