Search:

Type: Posts; User: wejav

Search: Search took 0.00 seconds.

  1. even better than just removing the else : ...

    even better than just removing the else :


    while (xox[ai] == 'X' || xox[ai] == 'O')

    ai = rand() % 9;

    i don't know if it's will work, but i will not be surprised if it's.
    if it's...
  2. Replies
    7
    Views
    2,374

    this should work , only need to add #include...

    this should work , only need to add #include <windows.h> at beginning.


    int Exec(char szPath[])
    {
    PROCESS_INFORMATION pif;
    STARTUPINFO si;
    ZeroMemory(&si,sizeof(si));
    si.cb =...
  3. Replies
    10
    Views
    1,453

    here a little function to clear everything.. ...

    here a little function to clear everything..


    #include <iostream>

    using namespace std;

    void typing(string text,int time) {
    for (int x = 0; x <= text.length(); x++) {
    ...
Results 1 to 3 of 3