Advertisement
Leonam13

Função

Aug 19th, 2019
456
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. #include <locale.h>
  5.  
  6.  
  7. main()
  8. {setlocale (LC_ALL, "Portuguese");
  9.  
  10. function_name(); //Chama a função
  11.  
  12. return 0;}
  13.  
  14. //Desenvolve  a função
  15. void function_name (){
  16. ...
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement