Advertisement
joker546645

5_4 c

Dec 7th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. void int2float(int * calkowite, float * zmienno_przec);
  3. int main()
  4. {
  5.  
  6.     int a[2] = {-17, 24 };
  7.     float r[4];
  8.  
  9.     int2float(a, r);
  10.     printf("\nKonwersja = %f  %f\n", r[0], r[1]);
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement