Advertisement
Guest User

Exemplo de função sem retorno e sem argumentos

a guest
Jun 2nd, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement