일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Machine Learning
- nodeJS
- R
- WebGL
- 몽고디비
- Deep learning
- 데이터 과학
- 딥러닝
- No SQL
- openCV
- Big Data
- 확률
- probability
- c++
- 빅 데이터
- 김양재
- 통계
- data science
- 빅데이타
- 김양재 목사님
- 주일설교
- Artificial Intelligence
- 우리들교회
- Statistics
- node.js
- 빅 데이타
- 인공지능
- 빅데이터
- 김양재 목사
- MongoDB
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / String Append 본문
//
// main.cpp
//
// Created by gchoi on 2014. 4. 30..
// Copyright (c) 2014년 gchoi. All rights reserved.
//
#include <iostream>
#include <string>
using namespace std;
int main( int argc , const char * argv [])
{
string fruit1 , fruit2 ;
fruit1 = "banana";
fruit2 = "apple";
fruit1.append (fruit2);
cout << fruit1 << endl ;
int myChar = getchar();
return 0 ;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / Double Pointer (0) | 2014.06.12 |
---|---|
[C/C++] Example / clockType (0) | 2014.06.12 |
[C/C++] Example / Vector Class (0) | 2014.06.12 |
[C/C++] Example / 최대공약수(GCM) 알고리즘 (0) | 2014.06.12 |
[C/C++] Example / Reading & Writing to a Binary File (0) | 2014.06.12 |
Comments