Skip to content

Instantly share code, notes, and snippets.

@ivanelson
Created February 27, 2019 18:38
Show Gist options
  • Save ivanelson/d24645742e0723accf3412d552ba07ab to your computer and use it in GitHub Desktop.
Save ivanelson/d24645742e0723accf3412d552ba07ab to your computer and use it in GitHub Desktop.
Execicio 1
/******************************************************************************
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