-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseries-c-10.tex
188 lines (159 loc) · 5.55 KB
/
series-c-10.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
\documentclass[french,a4paper,addpoints,11pt]{exam}
\usepackage{hexercises}
\usepackage{mathtools, nccmath}
\title{Révision, fonctions et programmes}
\seriesno{\texttt{0x10}}
\department{TIN}
\classroom{INFO1-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
\renewcommand{\choiceshook}{%
\setlength{\leftmargin}{20pt}%
}
\begin{document}
\maketitle
\thispagestyle{headandfoot}
\begin{questions}
\titledquestion{Choix multiples}
\begin{parts}
\part Cocher les propositions vraies concernant \CD{strncmp} ?
\begin{choices}
\CorrectChoice La fonction compare deux chaînes de caractères jusqu'à un certain nombre de caractères.
\choice La fonction compare deux chaînes de caractères jusqu'à la fin.
\choice La fonction retourne 1 si les chaînes sont égales.
\CorrectChoice La fonction peut s'appeler avec \CD{strncmp("abc", "ab", 2)}.
\end{choices}
\part Quel est le rôle de l'opérateur \CD{^} ?
\begin{multicols}{2}
\begin{choices}
\choice Puissance comme dans \CD{10^3}.
\CorrectChoice Ou exclusif.
\choice Ou inclusif.
\choice Et logique.
\choice Modulo.
\choice Inversion bit à bit.
\end{choices}
\end{multicols}
\part Quelles sont les déclarations de tableaux valides ?
\begin{multicols}{2}
\begin{choices}
\choice \CD{int a[] = 0;}
\CorrectChoice \CD{int a[10];}
\CorrectChoice \CD{int a[10] = {1, 2, 3, 4, 5};}
\CorrectChoice \CD{int a[] = {1, 2, 3, 4, 5};}
\choice \CD{int a[10] = 0;}
\choice \CD{int a[3]; a = {1,2,3};}
\end{choices}
\end{multicols}
\part Cocher ce qui est vrai concernant \CD{int *p} et \CD{int p[10]} ?
\begin{choices}
\CorrectChoice \CD{int *p} est un pointeur vers un entier, \CD{int p[10]} est un tableau de 10 entiers.
\CorrectChoice La taille de \CD{int *p} est la taille d'une adresse, la taille de \CD{int p[10]} est la taille de 10 entiers soit 40 octets.
\choice \CD{int *p} est un tableau de 10 entiers, \CD{int p[10]} est un pointeur vers un entier.
\CorrectChoice Les deux peuvent être passés à une fonction pour être modifiés.
\CorrectChoice L'accès à l'élément 2 s'écrit dans les deux cas \CD{p[2]}.
\end{choices}
\end{parts}
\titledquestion{Fonctions}
\begin{parts}
\part Écrire une fonction \CD{vowel} qui prend en paramètre une chaîne de caractère et qui retourne le nombre de voyelles dans la chaîne.
\begin{solution}
\begin{lstlisting}
int vowel(char *str) {
int count = 0;
while (*str != '\0') {
char c = tolower(*str);
if (c == 'a' || c == 'e' || c == 'i' ||
c == 'o' || c == 'u' || c == 'y')
count++;
str++;
}
return count;
}
\end{lstlisting}
\end{solution}
\part Écrire une fonction \CD{max_interval} qui calcule l'intervalle le plus grand dans un tableau d'entiers passé en paramètre. Le second paramètre est la taille du tableau.
\begin{solution}
\begin{lstlisting}
int max_interval(int *a, size_t size) {
int max = 0;
for (size_t i = 0; i < size; i++) {
for (size_t j = i + 1; j < size; j++) {
int interval = a[j] - a[i];
if (interval > max)
max = interval;
}
}
return max;
}
\end{lstlisting}
\end{solution}
\part Écrire une fonction \CD{is_palindrome} qui retourne vrai si une chaîne de caractères est un palindrome, faux sinon. La chaîne est passée en paramètre.
\begin{solution}
\begin{lstlisting}
bool is_palindrome(char *str) {
size_t size = strlen(str);
for (size_t i = 0; i < size / 2; i++) {
if (str[i] != str[size - i - 1])
return false;
}
return true;
}
\end{lstlisting}
\end{solution}
\part Écrire une fonction qui prend en paramètre deux tableaux d'entiers et qui s'assure que l'un est bien dans l'ordre inverse que l'autre. La fonction prend en paramètre les deux tableaux et leur taille qui est commune.
\begin{solution}
\begin{lstlisting}
bool is_reverse(int *a, int *b, size_t size) {
for (size_t i = 0; i < size; i++) {
if (a[i] != b[size - i - 1])
return false;
}
return true;
}
\end{lstlisting}
\end{solution}
\part Écrire un une fonction qui rempli un tableau à deux dimensions de taille 10x10 avec des valeurs aléatoires entre 0 et 100. La fonction prend en paramètre le tableau, le nombre de lignes et le nombre de colonnes.
\begin{solution}
\begin{lstlisting}
void fill_random(int a[10][10]) {
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 10; j++)
a[i][j] = rand() % 101;
}
}
\end{lstlisting}
\end{solution}
\end{parts}
\question Écrire un programme complet qui lit sur les arguments \CD{--min=X} et \CD{--max=Y} où X et Y sont des entiers positifs. Le programme appelle une fonction \CD{compute(x, y)} avec les valeurs capturées sur les arguments. Cette fonction retourne vraie si elle s'est exécutée correctement, sinon faux.
\begin{solution}
\begin{lstlisting}
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
extern bool compute(int x, int y);
int main(int argc, char* argv[]) {
int x, y;
for (int arg = 1; arg < argc; arg++) {
if (strncmp(argv[arg], "--min=", 6) == 0) {
x = atoi(argv[arg + 1]);
continue;
}
if (strncmp(argv[arg], "--max=", 6) == 0) {
y = atoi(argv[arg + 1]);
continue;
}
printf("Usage: %s --min=X --max=Y\n", argv[0]);
return 1;
}
return compute(x, y);
}
\end{lstlisting}
\end{solution}
\end{questions}
\end{document}