From fa2c7fa9e0403e73e27001f895d469bc650f52ba Mon Sep 17 00:00:00 2001
From: Arnaud Lefebvre <arnaud.lefebvre@student.uclouvain.be>
Date: Thu, 2 Apr 2020 15:37:24 +0200
Subject: [PATCH] Update main.c

---
 main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main.c b/main.c
index 4b4246a..c22746f 100644
--- a/main.c
+++ b/main.c
@@ -14,8 +14,8 @@
  * Ce programme n'est pas optimisé et écris tous les diviseurs de <chiffre> même si ceux-ci apparaissent plus d'une fois
  */
 int main() {
-    FILE *f_in = fopen(path to "example_input.txt", "r");
-    FILE *f_out = fopen(path to "example_output.txt", "w");
+    FILE *f_in = fopen(path to "example_input.txt", "r");           // A changer en fonction de ou est votre fichier in
+    FILE *f_out = fopen(path to "example_output.txt", "w");         // A changer en fonction de ou vous voulez votre fichier out
     if (f_in == NULL) exit(1);
     if (f_out == NULL) exit(1);
 
-- 
GitLab