In C and C++, the asterisk in the declaration of a pointer variable is part of the expression being declared. In C#, the asterisk in the declaration is part of the type.
In C, C++ and C#, the following snippet declares an int pointer:
int* a;
In C and C++, the following snippet declares an int ...