0

While passing pointer to a function in C, on the receiving end, two conventions are seen:

void foo(int *pointer)

and

void foo(int* pointer)

What's the difference between them?

0 Answers0