int main() {
int x = 4,*y;
y = &x; (*y) ++;
printf("%d", *y);
return 0;
}
Answers
Answered by
0
Answer:
coding
mark A brainlist
Similar questions