13 lines
194 B
C
13 lines
194 B
C
|
#include<stdlib.h>
|
||
|
#include<stdio.h>
|
||
|
|
||
|
int main(void){
|
||
|
|
||
|
int entier = 1234;
|
||
|
printf("Entrez un entier :");
|
||
|
scanf("%d",&entier);
|
||
|
printf("L'entier tapé est : %d\n", entier);
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|