fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. char s[10]="IITR";
  8. cout<<s+2<<endl;
  9. cout<<&(*s)<<endl;
  10. cout<<&s<<endl;
  11. cout<<(int *) s;
  12. }
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
TR
IITR
0x7ffc81d9b16e
0x7ffc81d9b16e