cc

Dependencies:   mbed TextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Exercice_2.cpp Source File

Exercice_2.cpp

00001 /*#include "mbed.h" 
00002 Serial pc(USBTX,USBRX);  
00003 LocalFileSystem local("local");  
00004 char read_string[64];  
00005 int main () 
00006 { 
00007   FILE* File1 = fopen("/local/textfile.txt","w");  // ouvre un fichier
00008   fputs("Beaucoup de mots et de lettres...", File1) //ecrit ds le fichier
00009 ;  
00010   fclose(File1);     //ferme le fichier
00011   FILE* File2 = fopen ("/local/textfile.txt","r"); 
00012   fgets(read_string,256,File2);    //lis le fichier 
00013   fclose(File2);      
00014   pc.printf("text data: %s \n",read_string);    //Ecrit sur teraterm
00015 } */