Forum: C Jul 16th, 2009 |
| Replies: 18 Views: 676 You have an (i) problem.
You need to use two different variables within a nested loop, such as i and j.
for(i=0;i<2;i++)
// for(i=0;i<3;i++) {
for(x = 0; x < 3; x++ ) {
... |
Forum: C Jun 17th, 2009 |
| Replies: 6 Views: 475 Based upon your post, may I suggest you start with something similar out of a book such as the "Hello World" program!
#include <file.h>
void create_project_go()
{
FILE *fp;
... |