Search:

Type: Posts; User: lightpawn

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,354

    Figured it out, changing j from double to float...

    Figured it out, changing j from double to float fixed it (duh).
  2. I believe it depends on what method you use to...

    I believe it depends on what method you use to connect to the internet. If you are on standard 56k dialup service, you will most likely get a new IP address each time you log in (dynamic). If you...
  3. Replies
    2
    Views
    1,354

    Here is my program in its entirety thus far: ...

    Here is my program in its entirety thus far:

    void main(void)
    {
    //variables
    char file_in[25];
    char str[90];
    int i=0, rows=0;
    double j;
  4. Replies
    2
    Views
    1,354

    having trouble with variables

    I have the following lines in my program:


    for(i=0; i<rows; i++)
    {
    fscanf(input, "%lf %lf", &time[i], &value[i]);
    printf("%lf %lf\n", time[i], value[i]);
    }

    I want j (type double) to...
Results 1 to 4 of 4