|
Re: C Programming Homework Help Needed
As one step, you can remove the & sign from your printf statements.
For example,
printf("Time of flight is %f seconds.\n", &time);
becomes:
printf("Time of flight is %f seconds.\n", time);
__________________
Joel Johnson
Division By Zero ( 229) Alumni, 2003-2007
RAGE ( 173) Alumni, 1999-2003
|