The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
Generally, Type Casting is the procedure or a way to convert one thing to another. For example consider your friend bob has a bushy hairstyle, everyone of you teasing bob everyday, thus bob decided to change his hairstyle, in the very next day bob went to barber shop and got a spike hairstyle and attracted everyone. Clearly, bob is type casted from bushy hairstyle to spike hairstyle. Here typecasting in done in barber shop.
C compilers allowed programmers to convert from one data type to another data type by using type cast method. Type casting is also known as type conversion.
Let us write a C program to typecasting int datatype to float datatype
#include <stdio.h> int main() { int a = 3; int b = 2; int c; printf("The value of c = %f ",(float)a/b); return 0; }
Variables a, b, c belongs to integer data type, where actual result will be in float. Thus, we are in need to typecast the data type of variable 'c' from an int ⇨ float.
Let us write a c program to typecasting float datatype to int datatype
#include <stdio.h> int main() { float a = 3.56; printf("The value of a = %d ",(int)a); return 0; }
Variables a belongs to float datatype, which is typecasted to int datatype in the printf statement. Thus integer output is displayed.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019