Because of a language pitfall. Better define each pointer on a separate row:
Code:
int* ptr_a;
int* ptr_b;
It is in fact always better to declare each variable on it's own line. That way, you are always sure of the type and can more easily see the initialisation (if you have any).