Guest User

Untitled

a guest
Oct 17th, 2018
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.  
  3. typedef int vector;
  4.  
  5. void v×v(vector v1, vector v2) {
  6.   // dostuff
  7. }
  8.  
  9.  
  10. int main(void){
  11.   vector v1 = 1, v2 = 2;
  12.   v×v(v1, v2);
  13.   return 0;
  14. }
Add Comment
Please, Sign In to add comment