C++ alapok - 2. rész Változó típusok és értékadás

 Mond neked valamit, hogy Integer, String, Double? Ha nem most kapsz hozzá egy kis útmutatást



Forráskód:


#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
string a, b,c;
a="4";
b="5";
c=a+b;
cout<<c;
return 0;
}


Videó: