Skip to content

Instantly share code, notes, and snippets.

@rogerioagjr
Last active August 29, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerioagjr/d162df53283b62283a60 to your computer and use it in GitHub Desktop.
Save rogerioagjr/d162df53283b62283a60 to your computer and use it in GitHub Desktop.
Código Genérico
#include <cstdio> // declaro a biblioteca que vou usar, no caso, cstdio
int main(){ // declaro a função main e abro chaves
// aqui é onde escrevo todos os comandos do programa na ordem em que devem ser executados
return 0; // digo para a main fechar no final do programa
} // termino a main fechando as chaves
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment