Created
February 27, 2019 18:38
-
-
Save ivanelson/d24645742e0723accf3412d552ba07ab to your computer and use it in GitHub Desktop.
Execicio 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****************************************************************************** | |
Online C Compiler. | |
Code, Compile, Run and Debug C program online. | |
Write your code in this editor and press "Run" button to compile and execute it. | |
*******************************************************************************/ | |
#include <stdio.h> | |
int main() | |
{ | |
int i; | |
printf("Hello World"); | |
for (i = 0; i++; i<10); | |
{ | |
printf("\n%d",i); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment