0
Can you make the user input string?
Using the cin operator to make the user input string.
3 Antworten
+ 1
Ah! Thanks, trying to make a trivia game! thanks again!
0
use std::string
0
example
#include <iostream>
int main(){
std::string name;
std::cin>>name;
}