Книга: Advanced PIC Microcontroller Projects in C

3.1.4 White Spaces

3.1.4 White Spaces

White spaces are spaces, blanks, tabs, and newline characters. The C compiler ignores all white spaces. Thus, the following three sequences are identical:

int i;  char j;

or

int i;
char j;

or

int i;
      char j;

Similarly, the following sequences are identical:

i = j + 2;

or

i = j
     + 2;

Оглавление книги


Генерация: 0.041. Запросов К БД/Cache: 0 / 0
поделиться
Вверх Вниз