Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions level4/TASK110.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,10 @@ The good news is that most platforms do this for you so you can always know the

| TASK | Details |
| --- | --- |
| 1 | Modify the code and use `sizeof` to verify the size of the |
| 2 | Change the data type to signed by deleting the keyword `unsigned` |
| 1 | Modify the code by adding a `typedef` for each type. Use `sizeof` to verify their sizes|
| 2 | Build and run |
| 3 | Add `unsigned` to each valid type and a `u` prefix to each `typedef`. Take note of how the sizes are unchanged, and how doubles and floats can't be unsigned (more on this later) |

---

[NEXT - Variables and Terminal Input](TASK112.md)
[NEXT - Variables and Terminal Input](TASK112.md)