C++ Tutor

I am 18 years of age and have been learning c++ on my own for a little while now. I am looking for a c++ tutor who can help me to learn more. PM me if you can help.
Please put this in the jobs section.
Put this in the jobs section
cout<<"Good luck finding someone"<<endl;
closed account (N36fSL3A)
Actually, std::cout << "Good luck finding someone." << endl;

or even more proper,

1
2
3
4
5
6
7
8
9
10
#include <iostream>

int main()
{
    std::cout << "Good luck finding someone." << endl;

    system("PAUSE");

    return 0;
}
closed account (3qX21hU5)
Fredbill30 wrote:
Actually, std::cout << "Good luck finding someone." << endl;

or even more proper,

1
2
3
4
5
6
7
8
9
10
#include <iostream>

int main()
{
    std::cout << "Good luck finding someone." << endl;

    system("PAUSE");

    return 0;
}



... and Fredbill shows his amazing skill once more ;p
Last edited on
closed account (N36fSL3A)
Always ;D
Topic archived. No new replies allowed.