29 Novembre
This commit is contained in:
parent
aca1866b8e
commit
008ce05b82
26
DEV1.1/TP13:Fichiers/Fichiers:suite/compteur.c
Normal file
26
DEV1.1/TP13:Fichiers/Fichiers:suite/compteur.c
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
int* n=malloc(4);
|
||||||
|
FILE* f;
|
||||||
|
f=fopen("nbrExec.txt","r");
|
||||||
|
if(f!=NULL){
|
||||||
|
fread(n,4,1,f);
|
||||||
|
fclose(f);
|
||||||
|
printf("Le code a ete executer %d fois.\n",*n);
|
||||||
|
f=fopen("nbrExec.txt","w");
|
||||||
|
*n=*n+1;
|
||||||
|
fwrite(n,4,1,f);
|
||||||
|
fclose(f);
|
||||||
|
} else {
|
||||||
|
*n=1;
|
||||||
|
printf("Le code a ete executer %d fois.\n",*n);
|
||||||
|
f=fopen("nbrExec.txt","w");
|
||||||
|
*n=*n+1;
|
||||||
|
fwrite(n,4,1,f);
|
||||||
|
fclose(f);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
20
DEV1.1/TP13:Fichiers/Fichiers:suite/hexadecimal.c
Normal file
20
DEV1.1/TP13:Fichiers/Fichiers:suite/hexadecimal.c
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
char* c=malloc(16);
|
||||||
|
FILE* f;
|
||||||
|
int i;
|
||||||
|
f=fopen("hexdump.txt","r");
|
||||||
|
if(f!=NULL){
|
||||||
|
fgets(c,16,f);
|
||||||
|
while(feof(f)==0){
|
||||||
|
for (i=0;i<16;i+=2){
|
||||||
|
printf("%x%x ",c[i+1],c[i]);
|
||||||
|
} printf("\n");
|
||||||
|
fgets(c,16,f);
|
||||||
|
} fclose(f);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
6
DEV1.1/TP13:Fichiers/Fichiers:suite/hexdump.txt
Normal file
6
DEV1.1/TP13:Fichiers/Fichiers:suite/hexdump.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
fzdauvdu
|
||||||
|
21726781
|
||||||
|
21TZ561rfbn 2
|
||||||
|
S2
|
||||||
|
s&yuzt&y
|
||||||
|
dzada
|
BIN
DEV1.1/TP13:Fichiers/Fichiers:suite/nbrExec.txt
Normal file
BIN
DEV1.1/TP13:Fichiers/Fichiers:suite/nbrExec.txt
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user