fork download
  1. //#include<iostream.h>
  2. using namespace std;
  3. int main()
  4. {
  5. int a[5] = {1,2,3,4,5};
  6. int *p = a;
  7.  
  8. std::cout<<p<<endl;
  9. p++;
  10. std::cout<<p;
  11. return 0;
  12. }
Runtime error #stdin #stdout #stderr 0.01s 1760KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
ICL774I	RANDOM COMPILER BUG
	ON THE WAY TO 12
        CORRECT SOURCE AND RESUBNIT