video on yt.

I uploaded a video in youtube with my tic tac toe.
i tell it in this site,because they are many beginners here who they want to learn how to code a simple tic tac toe.
So if they go here:http://www.youtube.com/watch?v=oRQfRIf3g0k
they could see and learn.
Thank you very much.
I don't know how well it shows up for everyone else, but the code is very hard to read. Good job regardless. Might I suggest editting your first post and pasting the code for others to easily see and be able to understand whats happening?
i am sorry,but i didnt understood what you mean in the last phrase.
Also if you cant read it you can add me in skype:magas1291
also you can do it high definition and you can do your screen bigger too.
so it will be better.
Use the [ code][ /code] tags and paste your code between them like so

[ code]#include <iostream>

int main() {
std::cout << "Hello, World!" << std::endl;

return 0;
}[ /code]
Eliminate the spaces in [ code] and [ /code] and get the following.

Shows
1
2
3
4
5
6
7
#include <iostream>

int main() {
   std::cout << "Hello, World!" << std::endl;

   return 0;
}


[Edit]I'm also working on a Tic-Tac-Toe program myself but I keep getting distracted by doing other things.
Last edited on
i know how to paste the code,but why to do it?i have make a video with it.

If you want help i would happy to help you(about tic tac toe or in generall in c++),so you can add me in skype:magas1291

i think that i helped.
i know how to paste the code,but why to do it?i have make a video with it.

Volatile was just saying the code is kind of hard to read in the video
Topic archived. No new replies allowed.