fork download
  1. //MAIN
  2. #include <iostream>
  3. #include "cs.hpp"
  4. #include "ss.hpp"
  5. #include <string>
  6. using namespace std;
  7.  
  8. int main(){
  9.  
  10. cs cso;
  11. cso.csf();
  12.  
  13.  
  14.  
  15.  
  16. ss sso;
  17. sso.ssf(cso);
  18.  
  19.  
  20. return 0;
  21. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:3:10: fatal error: 'cs.hpp' file not found
#include "cs.hpp"
         ^
1 error generated.
stdout
Standard output is empty