Facing issue during compilation in while statement , how can i reach out to someone to clear it

whenever i write eg while( row <= 2*n + 1){ } it show a compilation error and instructs to put semicolon after these paraenthesis () .

always use proper parenthesis like row <= ( (2*n) + 1 )