Don't like ads? PRO users don't see any ads ;-)
Guest

Exemplo de função sem retorno e sem argumentos

By: a guest on Jun 2nd, 2012  |  syntax: C  |  size: 0.12 KB  |  hits: 36  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include<conio.h>
  2. #include<stdio.h>
  3.  
  4. void oi() {
  5.         printf("Oi!");
  6. }
  7.  
  8. int main(void) {
  9.         oi();
  10.         getch();
  11.         return 0;
  12. }