fork download
  1. void funkcja( float & x, float y, const short int & z ) {}
  2.  
  3. int main()
  4. {
  5. long int d; short int a; float b, c;
  6. // 3 jest liczbą całkowitą mieszczącą się w shorcie więc też będzie prawidłowe
  7. funkcja( b, c, 3 );
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty