Search:

Type: Posts; User: Zappy

Search: Search took 0.01 seconds.

  1. Replies
    21
    Views
    2,973

    Anyone know any good ones on the web besides the...

    Anyone know any good ones on the web besides the ones on cprogramming.com? I am pretty new to c++ myself, i have been over most of the basic dos tuts.
  2. Replies
    18
    Views
    7,869

    If you want to print all variable of the array...

    If you want to print all variable of the array the fastest way i know of would be to do somthing like.


    int x;
    for (x; x < 30; )
    {
    cout << array[x]
    x++;
    }
Results 1 to 2 of 2