Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 251 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (14 loc) · 251 Bytes

Code Style

  • use 3 spaces to indent
  • after control structures brackets in new line under the keyword
int main (int argc, char **argv)
{
   int i ;
   
   for (i = 0; i < 128; ++i)
   {
      printf ("%d\n", i) ;
   }
   
   return 0 ;
}