Guest User

Untitled

a guest
Apr 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. int main() {
  2. ...
  3. process()
  4. ...
  5. }
  6.  
  7. void process() {
  8. ...
  9. int li = 0;
  10. int hi = 10;
  11.  
  12. sort(li, hi);
  13. ...
  14. }
  15.  
  16. sort(int low, int high) {
  17. printf("%i, %i\n", low, high); // works
  18. int h = high; // unknown what happens
  19. printf("%d\n", h); // doesn't work.
  20. ...
  21. }
Add Comment
Please, Sign In to add comment