fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int pyt[5];
  7. char odp[5] = {'a', 'b', 'c', 'd', '\0'};
  8. if(pyt[5] == 0) {
  9. cout << odp[2];
  10. }
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty