posix_ansi_iso_c
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
posix_ansi_iso_c [2024-05-13] – hanez | posix_ansi_iso_c [2025-03-18] (current) – [MFC] fnord | ||
---|---|---|---|
Line 7: | Line 7: | ||
Half of the C standard refers to the language itself, which includes specific guarantees about what types are available, what syntax you can use, et cetera. These guarantees are sometimes too broad to work with comfortably. For example, in standard C, it is guaranteed that at least the following types exist: | Half of the C standard refers to the language itself, which includes specific guarantees about what types are available, what syntax you can use, et cetera. These guarantees are sometimes too broad to work with comfortably. For example, in standard C, it is guaranteed that at least the following types exist: | ||
- | | + | |
- | * int, which represents at least -32767..+32767 | + | |
- | * long int, which represents at least -2147483647..+2147483647 | + | |
Each type in the list must be wider than the last, but there is a lot of leeway for systems to choose different sizes. For example, on a DSP or an old supercomputer all of the types might be exactly the same size. There is also no guarantee that a byte has 8 bits (maybe it has more than 8 bits). | Each type in the list must be wider than the last, but there is a lot of leeway for systems to choose different sizes. For example, on a DSP or an old supercomputer all of the types might be exactly the same size. There is also no guarantee that a byte has 8 bits (maybe it has more than 8 bits). | ||
Line 70: | Line 70: | ||
[[http:// | [[http:// | ||
- | ===== MFC ===== | + | ==== MFC ==== |
MFC is a library provided by Microsoft which makes it easier to write Win32 applications. It is effectively obsolete and should not be used for new projects. MFC is not standardized and there is only one implementation. | MFC is a library provided by Microsoft which makes it easier to write Win32 applications. It is effectively obsolete and should not be used for new projects. MFC is not standardized and there is only one implementation. |
posix_ansi_iso_c.1715642202.txt.gz · Last modified: 2024-05-13 by hanez