Explain type casting with examples in c programming
Answers
Answered by
5
Answer:
Type Casting In C Language. Type casting is a way to convert a variable from one data type to another data type. For example, if you want to store a long value into a simple integer then you can typecast long to int. You can convert values from one type to another explicitly using the cast operator.
Similar questions