1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Fix typo cpp 104 index (#4520)

This commit is contained in:
Nicky Lim
2023-09-30 23:40:03 +08:00
committed by GitHub
parent 82c2aaacc3
commit 4b2b2ebe8c

View File

@@ -85,7 +85,7 @@ int& numRef = num;
User-defined data types are types that are defined by the programmer, such as structures, classes, and unions. User-defined data types are types that are defined by the programmer, such as structures, classes, and unions.
## Structures (struct) ## Structures (struct)
Structures are used to store different data tyes under a single variable and accessibility of member variables and methods are public. Structures are used to store different data types under a single variable and accessibility of member variables and methods are public.
Example: Example:
```cpp ```cpp