Search:

Type: Posts; User: agilman

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    889

    That would be string type. string adr; cout...

    That would be string type.

    string adr;
    cout << "Enter your address"<<endl;
    cin >> adr;
    cout <<"The address you typed is:"<< adr;



    Goodluck.
  2. Replies
    2
    Views
    1,360

    newbie linux user question

    Hello,
    I usually use dev-cpp on windows, then I simply hit "compiler & execute" and it generates .exe.
    Now Im getting into linux stuff, and Im trying to use anjuta. I wrote a simple hello world...
  3. Replies
    4
    Views
    1,128

    Thanks swoopy! Thats exactly what I was looking...

    Thanks swoopy!
    Thats exactly what I was looking for!
  4. Replies
    8
    Views
    2,324

    C++ is not fun, its about as fun as ... well, I...

    C++ is not fun, its about as fun as ... well, I dont know... something thats not fun.
    Try python, now thats fun!

    Also try doing interesting projects, not ones that solv a boring problem that...
  5. Replies
    4
    Views
    1,128

    resizing vectors

    Howdy,

    I have two ints:
    int sizeX;
    int sizeY;

    I assign them values...
    and then I want to make a multidimensional vector that size.

    vector<vector<char > > maze;
  6. Replies
    3
    Views
    1,569

    That was a fun one :)...

    That was a fun one :)
    http://www.agilman.org/crap/code/line.zip

    basically there are two cases when you want to print *...
    when x or y =0 (first row and column) or when x=width or y=height...
Results 1 to 6 of 6