vault backup: 2024-10-01 21:26:24
This commit is contained in:
parent
78c946967f
commit
1a4a8c62b4
@ -38,4 +38,11 @@ D. Seconds in a day: `long`
|
|||||||
Answer:
|
Answer:
|
||||||
`unsigned int`
|
`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;
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user