fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int fun(int t[]) {
  5. t[0] += t[1];
  6. return t[0];
  7. }
  8.  
  9. int main() {
  10. int t[] = { 5,6,7 };
  11. cout << fun(t);
  12. cout << t[0];
  13. return 0;
  14. }
  15.  
  16.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1111