May 5, 2013 at 11:12pm UTC
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 UTC
Please put this in the jobs section.
Jun 10, 2013 at 3:03pm UTC
Put this in the jobs section
cout<<"Good luck finding someone" <<endl;
Jun 10, 2013 at 8:30pm UTC
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 UTC