Type casting in C simply means to convert one data type into other. C facilitates with a special operator named (type) which serves the purpose of type casting, where type represents the required data type.
Syntax:
(type) value;
Example:
#include<stdio.h> void main() { char value= (char)66; printf("Value : %c\n", value ); } |
Output
Value : B |