-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseries-c-21.tex
118 lines (101 loc) · 3.28 KB
/
series-c-21.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
\documentclass[french,a4paper,addpoints,11pt]{exam}
\usepackage{hexercises}
\usepackage{mathtools, nccmath}
\title{Les fichiers}
\seriesno{\texttt{0x21}}
\department{TIN}
\classroom{INFO2-TIN}
\setlength\answerlinelength{10 cm}
\setlength\answerskip{3ex}
\setlength\answerclearance{1.1ex}
\CorrectChoiceEmphasis{}
\renewcommand{\thepartno}{\alph{partno}}
\renewcommand{\partlabel}{\thepartno.}
\renewcommand{\arraystretch}{1.75} % expand the cells vertically
\begin{document}
\maketitle
\thispagestyle{headandfoot}
\begin{questions}
\question
\begin{parts}
\part Tout programme exécuté ouvre trois flux (fichiers) quels sont leur noms et leur direction (entrée/sortie) ?
\begin{enumerate}
\item \fillin[stdin, entrée][4cm]
\item \fillin[stdout, sortie][4cm]
\item \fillin[stderr, sortie][4cm]
\end{enumerate}
\part Quelle est la fonction utilisée pour positionner manuellement le curseur dans un fichier ?
\begin{checkboxes}
\choice \CD{fopen}
\choice \CD{fgets}
\CorrectChoice \CD{fseek}
\choice \CD{fputc}
\choice \CD{feof}
\end{checkboxes}
\part Quel est le mode à transmettre à l'appel \CD{fopen("f.txt", mode)} pour ouvrir un fichier existant en mode binaire en lecture écriture ?
\begin{checkboxes}
\choice \CD{"r"}
\choice \CD{"w"}
\CorrectChoice \CD{"ab+"}
\choice \CD{"aw"}
\choice \CD{"w+"}
\end{checkboxes}
\end{parts}
\question Vous disposez d'un pointeur sur un fichier ouvert en lecture \CD{fp} et vous souhaitez connaître la taille de ce fichier. Écrire une fonction \CD{size_t fsize(FILE *fp)} qui retourne la taille du fichier.
\begin{solutionordottedlines}[7cm]
\begin{lstlisting}
size_t fsize(FILE *fp) {
if (fp == NULL) return 0;
size_t size = 0;
fseek(fp, 0, SEEK_END);
size = ftell(fp);
fseek(fp, 0, SEEK_SET);
return size;
}
\end{lstlisting}
\end{solutionordottedlines}
\question Écrire un programme qui prend le nom d'un fichier texte en argument ainsi qu'un texte à rechercher. Votre programme doit afficher le numéro de toute ligne du fichier contenant le texte recherché.
\begin{solutionordottedlines}[10cm]
\begin{lstlisting}
int main(int argc, char *argv[]) {
assert(argc == 3);
char *filename = argv[1];
char *search = argv[2];
FILE *fp = fopen(filename, "r");
assert(fp != NULL);
char line[1024];
size_t line_no = 0;
while (fgets(line, sizeof(line), fp) != NULL) {
line_no++;
if (strstr(line, search) != NULL) {
printf("%d\n", line_no);
}
}
}
\end{lstlisting}
\end{solutionordottedlines}
\question Écrire un programme qui retourne la taille de la ligne la plus longue dans un fichier texte. Le programme prend soit un nom de fichier passé en arguments, soit utilise l'entrée standard.
\begin{solutionordottedlines}[10cm]
\begin{lstlisting}
int main(int argc, char *argv[]) {
char *filename = argc > 1 ? argv[1] : stdin;
FILE *fp = fopen(filename, "r");
assert(fp != NULL);
size_t max_len = 0;
size_t count = 0;
char c;
while(c = fgetc(fp)) {
if (c == '\n' || c == EOF) {
if (count > max_len) {
max_len = count;
}
count = 0;
continue;
}
count++;
}
}
\end{lstlisting}
\end{solutionordottedlines}
\end{questions}
\end{document}