일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- data science
- 우리들교회
- 빅 데이터
- Artificial Intelligence
- MongoDB
- 빅데이타
- 빅데이터
- openCV
- node.js
- Machine Learning
- WebGL
- No SQL
- 김양재 목사
- R
- probability
- Big Data
- 딥러닝
- 인공지능
- 몽고디비
- 데이터 과학
- 확률
- c++
- Deep learning
- nodeJS
- 주일설교
- 김양재 목사님
- 김양재
- Statistics
- 빅 데이타
- 통계
Archives
- Today
- Total
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 <iostream>
#include <fstream>
#include <strstream>
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 << cc << endl;
istrstream is(cc);
is >> c >> n >> f;
cout << "char : " << c << endl;
cout << "int : " << n << endl;
cout << "float : " << f << endl;
fin.close();
return 0;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / 최대공약수(GCM) 알고리즘 (0) | 2014.06.12 |
---|---|
[C/C++] Example / Reading & Writing to a Binary File (0) | 2014.06.12 |
[C/C++] Example / Writing a File (0) | 2014.06.12 |
[C/C++] Example / Ordering - Descending Algorithms (0) | 2014.06.12 |
[C/C++] Example / Derived Class (0) | 2014.06.12 |
Comments