#include <stdio.h> /* directive du preprocesseur */ #define TAILLE 10 void main() { int i; int j; i=5; j=42; printf ("%d %d",i,j) ; }