wildgoose 420 Practically a Posting Shark

I don't think people want to be thought of as meat and thus eaten! Too many movies on that topic.

If you mean "meet" may I suggest going back to school and continuing your education. You'll meet others wanting to be in the same industry and eventually through internships, those that are!

wildgoose 420 Practically a Posting Shark

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++ ) {
            total+=num[i][x];
            }
jephthah commented: redundant and obvious, how about reading the previous posts? -3
wildgoose 420 Practically a Posting Shark

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;    
      // Open an existing text file for reading!
   fp = fopen( "/usr//lib/htmlexamples//default.html", "rt"); 
  if (NULL != fp)
  {



        fclose(fp);
    }


   };
William Hemsworth commented: 16 Posts, still no code tags -2