vault backup: 2024-10-01 21:26:24

This commit is contained in:
zleyyij 2024-10-01 21:26:24 -06:00
parent 78c946967f
commit 1a4a8c62b4

View File

@ -38,4 +38,11 @@ D. Seconds in a day: `long`
Answer:
`unsigned int`
> 15.
> 15. Use `typedef` to create types named `Int8`, `Int16`, and `Int32`. Define the types so that they represent 8 bit, 16 bit, and 32 bit integers on your machine.
Answer:
```C
typedef char Int8;
typedef short Int16;
typedef long Int32;
```