일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 데이터 과학
- probability
- 김양재 목사님
- 주일설교
- 빅 데이터
- Machine Learning
- 몽고디비
- Deep learning
- 김양재 목사
- Artificial Intelligence
- nodeJS
- data science
- 딥러닝
- c++
- 빅데이터
- 빅데이타
- Statistics
- 통계
- 김양재
- No SQL
- 빅 데이타
- 인공지능
- node.js
- openCV
- WebGL
- R
- 우리들교회
- MongoDB
- 확률
- Big Data
Archives
- Today
- Total
목록reading a file (1)
Scientific Computing & Data Science
[C/C++] Example / Reading a File
// // main.cpp // // Created by gchoi on 2014. 5. 8.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include #include const int MAX_SIZE = 256; using namespace std; int main(int argc, const char * argv[]) { ifstream fin("/Users/gchoi/Documents/Xcode/Test-003/Test-003/test1.txt"); char c; int n; float f; char cc[MAX_SIZE]; fin.getline(cc, MAX_SIZE); cout c >> n >> f; cout
Programming/C&C++
2014. 6. 12. 10:45