fork download
  1. #include <iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4.  
  5. int a,b;
  6.  
  7. int somma()
  8. {
  9. return a+b;
  10. }
  11.  
  12.  
  13. int main() {
  14.  
  15.  
  16. a=0;
  17. b=10;
  18.  
  19. int x= somma();
  20. cout<<x<<endl;
  21.  
  22. return 0;
  23. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
10