Search:

Type: Posts; User: Radical Edward

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    3,866

    >>but uh...how do i get it to read after the...

    >>but uh...how do i get it to read after the first space?
    Edward is slightly confused. Isn't that what getline is for in your code? Ed's solution was to use get after cin to remove the floating...
  2. Replies
    32
    Views
    7,207

    Poll: >>technically linux would fall under unix. Linux...

    >>technically linux would fall under unix.
    Linux is GNU and everybody knows that GNU's Not Unix. :)

    =Ed=
  3. Replies
    8
    Views
    3,866

    >>#include It's either stdio.h or...

    >>#include <stdio>
    It's either stdio.h or cstdio, Edward knows of no other version.

    Replace...
    cin>>id;
    with...
    cin>>id, cin.get();
    and it will work as expected.

    =Ed=
  4. Replies
    2
    Views
    1,445

    >>Does anyone know if it would be faster to use...

    >>Does anyone know if it would be faster to use the '*' operator or the '&' operator?
    * and & are overloaded operators, do you mean multiplication and bitwise AND or dereference and address-of? If...
Results 1 to 4 of 4