Code:
#include <stdio.h>
#include <math.h>
int main(void)

{

double volts, init, ending, increment;
    fputs("What is the voltage?", stdout);
      scanf("%lf", &volts);
    fputs("What is the initial resistance?", stdout);
      scanf("%lf", &init);
    fputs("What is the ending resistance?", stdout);
      scanf("%lf", &ending);
    fputs("What is the increment resistance?", stdout);
      scanf("%lf", &increment);

/*Up till now i think i did it right... but i have no idea how to make
this a table.  it makes it hard to know how to display the results...*/

return 0;

}
my assignment is hosted online at

http://cs.clark.edu/~cowen/CSE121/As...ignment.2.html

I would really appreciate any help on how to make a table... any help at all. thanks.