En C, à quoi sert la fonction getch() ?
La fonction getch() est l'abréviation de get char qui permet de lire un caractère ou une touche au clavier. Cette fonction est bloquante jusqu'à ce que l'utilisateur appuie sur une touche. Le caractère n'est pas affiché à l'écran.
Voici un exemple d'utilisation :
#include <stdio.h>
#include <conio.h> // Pour la fonction getch()
int main()
{
char ch;
printf("Appuyez sur une touche pour continuer.\n");
// Attend un appui sur une touche
ch = getch();
printf ("Vous avez appuyé sur la touche %c.\n", ch);
return 0;
}
La fonction getch() est l'abréviation de get char qui permet de lire un caractère ou une touche au clavier. Cette fonction est bloquante jusqu'à ce que l'utilisateur appuie sur une touche. Le caractère n'est pas affiché à l'écran.
Voici un exemple d'utilisation :
#include <stdio.h>
#include <conio.h> // Pour la fonction getch()
int main()
{
char ch;
printf("Appuyez sur une touche pour continuer.\n");
// Attend un appui sur une touche
ch = getch();
printf ("Vous avez appuyé sur la touche %c.\n", ch);
return 0;
}
# | ID | Query | URL | Count |
---|---|---|---|---|
0 | 9009 | getch() ; | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
1 | 8368 | fonction getch | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
2 | 7835 | que veut dire getch en language de programmation | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
3 | 7342 | le role de getch en c | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
4 | 6965 | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch/ | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 12 |
5 | 6103 | la fonction getch en c | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
6 | 3362 | getch() | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
7 | 3143 | getch | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 2 |
8 | 1339 | [Langage c] getch() | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |
9 | 622 | la fonction getch | https://fr.ans.wiki/2185/en-c-a-quoi-sert-la-fonction-getch | 1 |