formation_git/exem.c
2022-10-20 15:23:07 +02:00

10 lines
No EOL
129 B
C

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