DEV1.1
TD
TP01
TP02
TP03
TP04
TP05
TP06
TP07
TP08
TP09
decoupage.c
echange.c
mirroir.c
palindrome.c
sigletons.c
tp9.txt
zero.c
TP10
TP11
TP12
TP13
TP14
TP15
random
DEV2.1
DEV2.3
DEV3.1
DEV3.2
Junit4Exemples
WEBBE
.gitignore
README.md
17 lines
296 B
C
17 lines
296 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main(int argc, char const *argv[]){
|
|
char* mot= (char*) malloc(100*sizeof(char));
|
|
printf("rentrez un/des mot.s :\n");
|
|
fgets(mot,100,stdin);
|
|
|
|
for (int i = 0; i < 100*sizeof(char); ++i)
|
|
{
|
|
printf("%c",*(mot+i));
|
|
}
|
|
|
|
|
|
return 0;
|
|
} |