Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int add(int x, y) {
  5.   int z = x + y;
  6.   return z;
  7. }
  8.  
  9. int main(int argc, char** argv) {
  10.   int r = add(argc, argc);
  11.   return r;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement