// pointers03.cpp int main() { char c = 'y'; int* p = &c; return 0; }