[ create a new paste ] login | about

Link: http://codepad.org/AFXEfJF8    [ raw code | output | fork ]

C, pasted on Aug 1:
1
2
3
4
5
6
7
8
#include <stdio.h> /* Pacotes com funções de entrada e saída */

int main(void)
{
    puts("Olá, Mundo!");
    return 0; /* Retorna 0, pois `main` retorna um `int` */
}
/* Nova linha após fechar a chave principal */


Output:
1
Olá, Mundo!


Create a new paste based on this one


Comments: