168k views
5 votes
Programming style refers to the way a programmer uses elements such as identifiers, spaces, and blank lines

1 Answer

5 votes

Answer

Absolutely true.

Step-by-step explanation

i.e:

bool test = false;

bool test=false;

bool bTest=false;

bool bTest = false;

if(test) {

}

if (test) {

}

if(test)

{

}

if (test)

{

}

if ( test )

{

}


Style can refer to quite a bit of things but that statement is true.

User Mohamed Medhat
by
4.1k points