“Conatenate String w CPP” Kod odpowiedzi

C Przykład Contagenation Ciąg Ciąg

#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

Jak połączyć dwa struny w 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

Conatenate String w CPP

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

Odpowiedzi podobne do “Conatenate String w CPP”

Pytania podobne do “Conatenate String w CPP”

Więcej pokrewnych odpowiedzi na “Conatenate String w CPP” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu