Skip to content

Instantly share code, notes, and snippets.

@emerson-d-lopes
Created November 20, 2018 01:25
Show Gist options
  • Save emerson-d-lopes/3e71ddc0288aa735dc48da2092bd9742 to your computer and use it in GitHub Desktop.
Save emerson-d-lopes/3e71ddc0288aa735dc48da2092bd9742 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
printf("hello world!");
return 0;
}
// compiler file_name -o created_file_name
// gcc intro.c -o intro
// ./intro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment