Programmation en .c
xxmath23
Messages postés
15
Statut
Membre
-
xxmath23 Messages postés 15 Statut Membre -
xxmath23 Messages postés 15 Statut Membre -
Bonjour,
j'ai crée un document "main.c"
dans mon terminal je tape : "gcc main.c"
réponse : main.c:1:19: "fatal error: studio.h: Aucun fichier ou dossier de ce type
compilation terminated."
Pourquoi???
merci d'avance
j'ai crée un document "main.c"
dans mon terminal je tape : "gcc main.c"
réponse : main.c:1:19: "fatal error: studio.h: Aucun fichier ou dossier de ce type
compilation terminated."
Pourquoi???
merci d'avance
A voir également:
- Programmation en .c
- Application de programmation - Guide
- Mettre en veille un programme - Guide
- Programmation envoi sms - Guide
- Ce programme est écrit en python il construit un mot secret ✓ - Forum Python
- Programmer en basic sous windows 10 - Télécharger - Édition & Programmation
#include <studio.h>
int main(void){
}
Ce n'est pas juste…
Il faut faire :
#include <stdio.h> int main(int argc, char *argv[]) { // Tes instructions return 0; }