How to place a web link into the code?

Hey, I'm extremely new at C++ and I have a project to do in my math class concerning my career. I would like to open links along with questions that I ask my self in the program.. After it asks what career I want I put in the answer and asks the next question and closes.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <cstdio>
#include <cstdlib>

using namespace std;

int main()
{
    char Game_Programmer;
    char What_education_is_needed;

    cout << "What did you choose as your career?" << endl;
    cin >> Game_Programmer;
    cout << "Are there any questions that you are needing to ask?" << endl;
    cin >> What_education_is_needed;

    return 0;
}


Thank you for any help:)
Last edited on
Are you talking about displaying the links in a terminal? I don't think that is something that can be easily done.

If it is, I would be really interested in seeing how to accomplish this without having to use a cgi scripts.
Last edited on
Topic archived. No new replies allowed.