📖 Definition:
Changing one data type into another.
📌 Types:
- Implicit (automatic)
- Explicit (manual)
Â
int a = 5;
float b = (float)a;
float b = (float)a;
Â
🧪 Exercise:
- Convert float to int and print
Changing one data type into another.