
September 16th, 2002, 10:18 PM
|
|
Junior Member
|
|
Join Date: Sep 2002
Location: South Carolina
Posts: 0
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
A good start
this should be a starting place
URL
Also, when coding think small first
Program To-Do List
1. Make hello world
2. Add two numbers
...
You get the drift.
also just b/c you may not know
gcc foo.c -- this compiles the code
/a.out -- runs the program
gcc -o any_name foo.c
/any_name -- new program name
|