fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. cout << "Witam" << endl << endl;
  8. cout << "#Imię: " << argv[1] << endl;
  9. cout << "#Nazwisko: " << argv[2] << endl;
  10. cout << "#Kierunek: " << argv[3] << endl;
  11. cout << "#Rok: " << argv[4] << endl;
  12. }
Success #stdin #stdout 0s 3296KB
stdin
Bartłomiej Gawlak Informatyka 2014
stdout
Witam

#Imię: