Advertisement
redsees

Untitled

Mar 27th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. void der(){
  5. printf("Inside Function...\n\n");
  6. exit(0);
  7. }
  8.  
  9. int main(){
  10. printf("Inside Main first time...\n");
  11. der();
  12. printf("Main Last...\n\n");
  13. return 0;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement