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?
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?