fork download
  1. #include <ctime>
  2. #include <cstdlib>
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. int getline(char tab[],int MAX);
  7.  
  8. int main()
  9. {
  10. cout<<getline(NULL,10);
  11. return 0;
  12. }
  13.  
  14. int getline(char tab[],int MAX)
  15. {
  16. return MAX;
  17. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
10