Advertisement
Pagoniusz

Untitled

Aug 24th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2.  
  3. double *odleglosc(float x, float y, float z);
  4.  
  5. int main()
  6. {
  7.     float x = 5, y = 5, z = 5;
  8.     double *wynik = odleglosc(x, y, z);
  9.     printf("%lf\n", wynik);
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement