Hello, I read in a thread that you could use
system("start http://www.daniweb.com/");
to get the page Daniweb but I am wanting to write a program that the user can enter a website that he wishes to go to then the program takes the user there.
I got this so far but got errors, I know I've done it wrong - It was only a attempt.
// Code Shark
#include <iostream>
using namespace std;
int main() {
char website[50];
cout << "Enter a website : ";
cin >> website;
system("start", website);
return 0;
cin.get();
cin.get();
}