Advertisement
Vermiculus

Untitled

Jan 29th, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void func(int a);
  4.  
  5. int main(int argc, char** argv) {
  6.     printf("Calling function\n");
  7.     func(2);
  8.     printf("Out of function. Ending program.");
  9. }
  10.  
  11. void func(int a) {
  12.     printf("In the function with %d as the parameter\n");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement