fork download
  1. #include <iostream>
  2. #include <ostream>
  3. using namespace std;
  4.  
  5. namespace Namespace
  6. {
  7. namespace Aux
  8. {
  9. extern "C" unsigned char hexData[]={0xC3};
  10. }
  11. extern "C" void hexData();
  12. }
  13.  
  14. int main()
  15. {
  16. Namespace::hexData();
  17. cout << "alive!" << endl;
  18. return 0;
  19. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
alive!