mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-12-22 13:22:39 +00:00
Merge pull request #337 from yaderson/master
Add c++ file contribution :)
This commit is contained in:
commit
418168f671
@ -1725,7 +1725,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
|
|||||||
# X
|
# X
|
||||||
|
|
||||||
# Y
|
# Y
|
||||||
|
### Yaderson Patiño
|
||||||
|
- Im from Colombia .student of programing, junior web Developer, in Vue Js, Node... Javascript is amazing
|
||||||
|
- [![twitter-alt][twitter-img]](https://mobile.twitter.com/Yaderr_)
|
||||||
|
[![github-alt][github-img]](https://github.com/yaderson)
|
||||||
|
|
||||||
### Yee Antonio
|
### Yee Antonio
|
||||||
|
|
||||||
- I am a Backend and Mobile Developer.
|
- I am a Backend and Mobile Developer.
|
||||||
|
26
code/FILES-BINARY-IN-C-PLUS-PLUS.cpp
Normal file
26
code/FILES-BINARY-IN-C-PLUS-PLUS.cpp
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/* 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();
|
||||||
|
*/
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user