ajout.c

#include<conio.h>
#include<stdio.h>
{
int a,b;
a=2;
b=10;
a=a+b;
printf("%d",&a);
getch();
}
Misty Millipede