Search:

Type: Posts; User: qny

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,939

    The conversion "%lf" is not valid for printf()...

    The conversion "%lf" is not valid for printf() (it should be used in scanf() with pointers to doubles).
    To print a value of type double, use "%f"; you cannot print a value of type float because the...
  2. Replies
    5
    Views
    1,939

    Try compiling both your source (containing the...

    Try compiling both your source (containing the main() function) and the source you found on the internet

    $ gcc rt.c prng.c -Wall -o rt -lm

    Oh! I also included the option to warn about stuff gcc...
Results 1 to 2 of 2