โช Choose the correct option.
What is the output of the following program?
#include
register char *p;
void main(){
static int arr[3] = {2,3,4};
p = arr;
p = (char*) ( (int*) (p));
printf("%d",*p);
p = (int * ) (p++);
printf("%d",*p++);
}