ceci est un exem program

This commit is contained in:
Nguyen Hoang-Triet 2022-10-20 15:23:07 +02:00
commit 3bdafdfff3

10
exem.c Normal file
View file

@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
int main(){
int a,b,c;
a= 10;
b =20;
c = a + b;
printf("%d \n", c);
}