#include <iostream>
using namespace std;
int main() {
char* x=0; // initialize pointer character called x equals zero
cout<<x; // print the value of pointer in memory
cout<<5; // print 5 on screen (not executed)
}
line 9 does not executed by the compiler