Consider this two variable declaration. both of these declarations have data types. What is the actual usage of these data types.
int a;
MyClass b;
- Is there a part of each declared memory to hold the data type?
- Do these data types for human usage?
- Do these data types not required beyond compiler(after compiled the program)?
- Any good resource to read about this?