“String gabungan di CPP” Kode Jawaban

Contoh gabungan string c string

#include <iostream>  
#include <cstring>  
using namespace std;  
int main()  
{  
    char key[25], buffer[25];  
    cout << "Enter the key string: ";  
    cin.getline(key, 25);  
    cout << "Enter the buffer string: ";  
     cin.getline(buffer, 25);  
    strcat(key, buffer);   
    cout << "Concatenation = " << key << endl;  
    return 0;  
}
Outrageous Ostrich

cara menggabungkan dua string di c

#include <iostream>
#include <cstdlib>

std::string text = "hello";
std::string moretext = "there";
std::string together = text + moretext;
std::cout << together << std::endl;

>> hello there
Angry Alpaca

String gabungan di CPP

string firstName = "John";
string lastName = "Doe";
string fullName = firstName + " " + lastName;
cout << fullName; 
Merwanski

Jawaban yang mirip dengan “String gabungan di CPP”

Pertanyaan yang mirip dengan “String gabungan di CPP”

Lebih banyak jawaban terkait untuk “String gabungan di CPP” di C++

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya