Search:

Type: Posts; User: vaspro

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    2,391

    you mean we need to simulate the "Math...

    you mean we need to simulate the "Math co-processor". Thanks Shiro.

    But i require some infor on how to perform floating point operations. I figured it out that, there are some functions in C which...
  2. Replies
    3
    Views
    1,173

    try Borland.com they are giving their TurboC...

    try Borland.com they are giving their TurboC 2.01(IDE) for free from thier Musuem.

    You can also download Borland C++ 5.5(BCC55) compiler (command line) for free. This can compile for win32 also.
  3. Replies
    4
    Views
    1,921

    U need to have Microsoft's performance monitor...

    U need to have Microsoft's performance monitor API for this. Try searching for the performance monitor API in MSDN.

    As per my knowledge, you will get these API's in windows2000 resource pack...
  4. Thread: Printing in C

    by vaspro
    Replies
    12
    Views
    1,983

    Use sprintf(); send the output to "stdprn" eg....

    Use sprintf(); send the output to "stdprn"

    eg. char s[]="hello world";
    sprintf(stdprn,s);

    --vaspro
  5. Replies
    4
    Views
    1,660

    i think "ihsir" is missing "endl;"

    i think "ihsir" is missing "endl;"
  6. Replies
    10
    Views
    2,391

    if s=x+y; both x and y are to be the...

    if

    s=x+y;

    both x and y are to be the maximum possible floating point numbers on your system.

    As per my knowledge it is not possible with simple arthimetic operators. We need to use some...
  7. Thread: shut down

    by vaspro
    Replies
    5
    Views
    2,727

    Set all i,o registers to 0 and call dosx86() with...

    Set all i,o registers to 0 and call dosx86() with those IO values.

    where i,o are unions. (union REGS i,o)

    --vaspro
  8. Replies
    10
    Views
    2,391

    the numbers to be added are upto the maximum...

    the numbers to be added are upto the maximum floating point number. Not the final sum :-).

    Vaspro
  9. Replies
    10
    Views
    2,391

    Adding Large float values--need help

    Hi,

    I am searching for the solution of following question:

    " Write a program in 'C' language to add very large floating-point numbers. The floating point number may be equal to maximum...
Results 1 to 9 of 9