C++

명품 C++ 실습문제 5장 3번

Hs’s Coding vlog 2023. 1. 5. 18:44
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;

void combine (string a,string b, string &c);
int main() {
    string text1("I love you"),text2("very much");
    string text3; //바어 있는 문자열
    combine (text1,text2,text3);
    
    cout << text3;
    cout << endl;
    return 0;

}

void combine(string a,string b, string &c){
    c = a + " " + b;
}

'C++' 카테고리의 다른 글

명품 C++ 실습문제 5장 6번  (0) 2023.01.05
명품 C++ 실습문제 5장 5번  (0) 2023.01.05
명품 C++ 실습문제 5장 1번  (0) 2023.01.05
명품 C++ 실습문제 4장 14번  (0) 2023.01.04
명품 C++ 실습문제 4장 12번  (0) 2023.01.04