What is Type-Casting in C? tccicomputercoaching.com Type-Casting means we can convert from one data type to another data-type.
There are 2 types of casting:
1. Internal 2. External: 1. In internal compiler convert from small type to large type. For Example, int x; float y; z=x+y; here, x- integer type converted to float type y automatically.
2. External In External User manually convert from one data-type to another data-type. Syntax: (type)value;