Guest User

main

a guest
Jun 29th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. // Header.h
  2. void f();
  3.  
  4. // Source.cpp
  5. #include "Header.h"
  6. void f()
  7. {
  8.     //...
  9. }
  10.  
  11. // main.cpp
  12. #include "Header.h"
  13. int main()
  14. {
  15.     f();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment