#include int main(void){ int *p, q; q = 19; /* assign q 19 */ p = &q; /* assign p the address of q */ printf("%d", *p); /* display q's value using pointer */ return 0;}