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

User RageD
by
6.1k 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
5.4k points