Programmation Avancée en C


beginend.c

00001 #include <stdio.h>
00002 
00003 #define BEGIN {
00004 #define END }
00005 
00006 int main()
00007 BEGIN
00008        printf("hello world\n");
00009        return 0;
00010 END