| In practice, compilers are likely to display a warning, then assume int and continue translating the program. |
На практике же, компиляторы могли определять неуказание, но также допускали, что это int и продолжали компиляцию программы. |
| The standard only requires size relations between the data types and minimum sizes for each data type: The relation requirements are that the long long is not smaller than long, which is not smaller than int, which is not smaller than short. |
Стандарт лишь оговаривает отношения в размерах между типами и минимальные рамки для каждого типа: Так long long не должен быть меньше long, который в свою очередь не должен быть меньше int, который в свою очередь не должен быть меньше short. |
| The type F is a function that takes an Int and a String as arguments, and returns a value of type Float. |
Тип F - это функция, которая принимает Int и String как аргументы и возвращает Float как результат. |
| INT 10h, INT 10H or INT 16 is shorthand for BIOS interrupt call 10hex, the 17th interrupt vector in an x86-based computer system. |
INT 10h, INT 10H или INT 16 - инструкция на языке ассемблера для процессора архитектуры x86, генерирующая программное прерывание BIOS 10hex, 17-й вектор прерывания в архитектуре x86. |
| For example, in the declaration int *ptr, the dereferenced form *ptr is an int, while the reference form ptr is a pointer to an int. |
Например, в объявлении int *ptr разыменованная форма *ptr является целым (int), а ссылочная форма ptr - указателем на целое. |