Search:

Type: Posts; User: Ashii

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,076

    Whats this? ( newbie question )

    I'm used of writing like this:


    int server() {}

    But here it shows a diffrent way:

    Server::Server() {}

    i'm trying too understand it, but could someone explain?
  2. newbie question reguarding safe practice of file io

    what im wondering about is can I read files, without worrying about destroying data?

    Below is a snippet out of tutorial 10 file io, it says I have too be careful of destroying data, does this...
  3. Whoops!!!

    Whoops!!!
  4. newbie problem, could someone say what is wrong with this?

    Complain:

    My Code:

    #include <iostream>

    using namespace std;

    struct weapons_guns {
    int sniper,assaultrifle,shotgun; // arsenal
  5. Replies
    7
    Views
    1,048

    Oh wow, it was that simple Thanks! got it...

    Oh wow, it was that simple

    Thanks! got it fixed by just changing my int too voids.
  6. Replies
    7
    Views
    1,048

    Another Prototype Problem:

    Here i'm trying to finish the 05 lessons by writing up the functions for the voids in their code. But it complains on me, this is what I got so far:



    #include <iostream>

    using namespace std;...
  7. Replies
    7
    Views
    1,048

    Thanks, I got alittle bit wiser :)

    Thanks, I got alittle bit wiser :)
  8. Replies
    7
    Views
    1,048

    Reguarding 04 tutorial ( prototypes )

    #include <iostream>

    using namespace std;

    int mult ( int x, int y );

    int main()
    {
    int x;
    int y;
Results 1 to 8 of 8