Advertisement
meta1211

Untitled

Apr 9th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include  <stdio.h>
  2.  
  3. void convention(int,int,int);
  4.  
  5. int main(){
  6.  
  7.     int a=5;  
  8.  
  9.     convention(a,++a,a++);
  10.  
  11.     return 0;
  12.  
  13. }
  14.  
  15. void  convention(int p,int q,int r){
  16.  
  17.     printf("%d %d %d",p,q,r);
  18.  
  19. }
  20.  
  21. //output: 7 7 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement