일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- node.js
- MongoDB
- Machine Learning
- c++
- 우리들교회
- 김양재 목사님
- Statistics
- 통계
- R
- Artificial Intelligence
- 빅 데이타
- probability
- Big Data
- WebGL
- 빅데이타
- 빅 데이터
- openCV
- 김양재 목사
- 몽고디비
- No SQL
- nodeJS
- 데이터 과학
- 주일설교
- Deep learning
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / Pointer of Structure 본문
//
// main.cpp
//
#include <iostream>
#include <string>
using namespace std;
struct Student {
int n;
string name;
int eng;
int math;
};
int main( int argc , const char * argv [])
{
Student choi;
Student *sp = NULL;
sp = &choi;
choi.n = 15;
choi.name = "geol";
choi.eng = 100;
choi.math = 99;
cout << sp->n << endl;
cout << sp->name << endl;
cout << sp->eng << endl;
cout << sp->math << endl;
return 0 ;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / Class Constructor (0) | 2014.06.12 |
---|---|
[C/C++] Example / Class (0) | 2014.06.12 |
[C/C++] Example / Structure (0) | 2014.06.12 |
[C/C++] Example / Dynamic Array (0) | 2014.06.12 |
[C/C++] Example / swap: call by pointer (0) | 2014.06.12 |
Comments