so I recently started learning pointers and in a lot of examples they are using flower brackets like this
int *iPtr{}; // a pointer to an integer value
double *dPtr{}; // a pointer to a double value
int* iPtr2{}; // also valid syntax (acceptable, but not favored)
int * iPtr3{}; // also valid syntax (but don't do this, it looks like multiplication)
int *iPtr4{}, *iPtr5{}; // declare two pointers to integer variables (not recommended)
I just want to know is it important to add those brackets