[try Beta version]
Not logged in

 
C++ Tutor

May 5, 2013 at 11:12pm
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.
May 6, 2013 at 6:25am
Please put this in the jobs section.
Jun 10, 2013 at 3:03pm
Put this in the jobs section
cout<<"Good luck finding someone"<<endl;
Jun 10, 2013 at 8:01pm
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;
}
Jun 10, 2013 at 8:30pm
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 Jun 10, 2013 at 8:32pm
Jun 10, 2013 at 9:08pm
closed account (N36fSL3A)
Always ;D
Topic archived. No new replies allowed.