Type Casting in c

C Programming Tutorial

Type Casting in c Type casting means changing a variable of one data type into another. The compiler will automatically change one type of data into another if it makes sense. For instance, if you assign an integer value to a floating-point variable, the compiler will convert the int to a float. Casting allows you to … Read more