fork(2) download
  1. #include <iostream>
  2.  
  3.  
  4. struct kukarek
  5. {
  6. int kudah[2];
  7. };
  8.  
  9.  
  10. struct kukarek kokoko(int a, int b)
  11. {
  12. return (struct kukarek) { { a, b } };
  13. }
  14.  
  15.  
  16. int main() {
  17. int i, j;
  18. std::cin >> i >> j;
  19. struct kukarek pokpok = kokoko(i, j);
  20. std::cout << pokpok.kudah[0] << ' ' << pokpok.kudah[1] << std::endl;
  21. return 0;
  22. }
Success #stdin #stdout 0s 3464KB
stdin
1 2
stdout
1 2