mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 04:07:48 +00:00
021bd50202
FILES-BINARY-IN-C-PLUS-PLUS.cpp
26 lines
500 B
C++
26 lines
500 B
C++
/* WORKING FIRST FILE BINARY */
|
|
#include <iostream>
|
|
#include <fstream>
|
|
using namespace std;
|
|
int main(){
|
|
char msg[100];
|
|
ofstream escritura("File1.txt");
|
|
if(escritura.fail()){
|
|
cout<<"Error in FILE";
|
|
}else{
|
|
cout<<"FILE Successfully generated"<<endl;
|
|
cout<<"Msg: ";
|
|
fflush(stdin);
|
|
gets(msg);
|
|
escritura<<msg;
|
|
}
|
|
|
|
escritura.close();
|
|
/* cout<<"Archivo -- close"<<endl;
|
|
char ar[100];
|
|
ifstream lectura("archivo1.txt");
|
|
lectura >> ar;
|
|
cout<<ar<<endl;
|
|
lectura.close();
|
|
*/
|
|
} |