Okej, już sobie poradziłem.
Zrobiłem to tak:
#include <string>
#include <iostream>
using namespace std;
int main()
{
int test[5];
test[0] = 1;
test[1] = 2;
test[2] = 3;
test[3] = 4;
test[4] = 5;
// jeśli chcę np przekonwertować test[2] na string, to robię to po prostu tak:
string to_string(int test[2] )
}
i po sprawie, od teraz test[2] jest pełnoprawnym stringiem, a reszta to dalej int'y
Ale potrzebuję teraz pomocy w innej sprawie:
Mam taki kod:
string g;
cin>>g;
#define DZIALANIE g
jeśli zamiast string g daje int g to wszytko działa, więc chciałbym wiedzieć, co tutaj jest źle