Using char only you can make a single character variable. How would you make a variable with a word? After searching i found this way:
#include <iostream>
int main()
{
char word[] = "computer";
std::cout<< "choose" << word << std::endl;
return 0;
}
Which gives what i need but it is not the proper way to do it i think? So is this the correct way: to put empty brackets after the variable of char?