Advertisement
Ivan_sjc

Exercicio c Lista Alex Menssagem()

Jun 4th, 2013
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <conio.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int mensagem ()    /* Função simples: só imprime Olá! */
  6. {
  7.     printf ("Teste 1, Messagem \n ");
  8.     return 0;
  9. }
  10.  
  11. int main ()
  12. {
  13.     mensagem();
  14.     getch();
  15.    
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement