703 views
0 votes
0 votes
int main(){

int arr[3]={2,3,4};

char *p;

p = (char*)arr;

printf("%d",*p);

p=p+1;

printf("%d",*p);

return 0;

}

Please log in or register to answer this question.

No related questions found