Multiple choice technology programming languages

As per the Coding Guidelines of the Project, Which of the following follows guidelines while declaring Pointer

  1. char* text;

  2. char *text;

  3. Char * text;

  4. char text*;

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

char* text; follows the project's pointer declaration guideline - the asterisk is attached to the type, not the variable name. The alternative char *text places space between type and asterisk, which this project's guidelines specify as incorrect.