Search:

Type: Posts; User: cid666

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,027

    also, try setting up your half variable as an...

    also, try setting up your half variable as an array with the same value as x in your character array




    half[x] = (int)message[x] // etc...
  2. Replies
    4
    Views
    1,027

    try sliding all of the ascii bits to the right,...

    try sliding all of the ascii bits to the right, then typecasting the result as an integer. you will always lose the LSD, but it will only matter if it's a 1
  3. The problem is windows always changes schesse.

    Windows never uses the same addresses for anything, they always re-allocate and write unused stuff to the hard drive, there has to be an api call that allows me to write to the display. Ideally i...
  4. Replies
    5
    Views
    1,206

    Why don't you do (7-1) - 6 Then it will...

    Why don't you do

    (7-1) - 6

    Then it will have to cycle thru a whole day before your output = 1
  5. you mean 2.996

    you mean 2.996
  6. Thread: Easy Question

    by cid666
    Replies
    15
    Views
    2,390

    is your life just one big syntax error? mine is.

    is your life just one big syntax error?
    mine is.
  7. I don't really know what to use. i'm trying to...

    I don't really know what to use.

    i'm trying to make a constant display with formatted info, display it on the screen and position the cursor wher I want it, maybe, even type stuff and based upon...
  8. Replies
    6
    Views
    18,741

    you could use getline(cin,string,'.') and...

    you could use

    getline(cin,string,'.')

    and the read would end at the decimal

    then you could check the string length and use an if statement if i's too short.
  9. Replies
    8
    Views
    1,663

    you can put most of that stuff in your header...

    you can put most of that stuff in your header file.

    also, you should use } to close your constructor.
  10. screen buffer, cursor position, etc, non-standard console interface usage

    I can't figure out the syntax for directly changing a value in the screen buffer for a console application, it's a very weird function that takes a weird argument,

    any suggestions?

    --Cid666
  11. delimiter in string class causes program to crash when " " charachter is ent

    I am trying to run a standard win32 console application, e.g. simple "Hello World" style app just to test this stupid "bug" or whatever it is.

    Does anyone know how to use the cin >> statement to...
Results 1 to 11 of 12