fork download
  1.  
  2.  
  3. #include <iostream>
  4. using namespace std;
  5. int main()
  6. {
  7. char str[10] = "ICECREAM";
  8. cout << str[3];
  9. cout << str;
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
CICECREAM