Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. I have that function:
  2.  
  3. function( double x, double y, double z );
  4.  
  5. I create that macro:
  6.  
  7. # define V(a,b,c) function( a size, b size, c size );
  8.  
  9. And I call it like that:
  10.  
  11. V(+,-,+);
  12.  
  13.  
  14. What does it mean? function( a + size, b - size, c + size ); ??
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement