208k views
0 votes
The C compiler ignores __________ characters like blanks, tabs and newlines used for indentation and vertical spacing.

User RageD
by
8.0k points

1 Answer

4 votes

Answer:

whitespace

Step-by-step explanation:

The C compiler ignores whitespace characters like blanks, tabs and newlines used for indentation and vertical spacing. For example:

Consider the function:

int add ( int a, int b){

return a+b;

}

and

int add ( int a, int b){

return a+b;

}

The 2 representations of add function will be equivalent from the compilers perspective as the additional whitespace will be ignored.

User Matt Winward
by
7.4k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.