Guest User

Untitled

a guest
Nov 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. //Pre declare a function so system can save memory
  2. int my_func (int,int);
  3.  
  4. //Actual declaration and usage
  5. int my_func (int a, int b) {
  6. return a*b;
  7. }
Add Comment
Please, Sign In to add comment