Help for this page

Select Code to Download


  1. or download this
    system("a.exe")
    print $?
    
  2. or download this
    $retVal = system("a.exe");
    print "$retVal\n";
    
  3. or download this
    % C++ retVal : 3
    % 256
    
  4. or download this
    int main()
    {
     cout << "C++ retVal: 3" << endl;
     return 3;
    }