×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: C
Posted by: Daniel Zizumbo Guevara
Added: Feb 4, 2016 5:56 AM
Views: 1975
Tags: no tags
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. /*
  8.  * File:   main.c
  9.  * Author: daniel
  10.  *
  11.  * Created on 3 de febrero de 2016, 01:19 AM
  12.  */
  13.  
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16.  
  17. /*
  18.  *
  19.  */
  20. int main(int argc, char** argv) {
  21.    
  22.    
  23.  
  24.  
  25.    
  26.     for (int i = 0; i < 5; i++)
  27.         printf("%d", i);
  28.     return (EXIT_SUCCESS);
  29.    
  30. }
  31.  
  32.  
  33.