12 lines
229 B
C++
12 lines
229 B
C++
|
Adding Strings
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
using namespace std;
|
||
|
int main(void)
|
||
|
{
|
||
|
string firstName = "gggg";
|
||
|
string lastName = "uuuut";
|
||
|
cout << "Your name is " << firstName + lastName;
|
||
|
return 0;
|
||
|
}
|