Computer Science, asked by Lesliemaddison6928, 1 year ago

Type casting available in many programming languages is an example of

Answers

Answered by ankurbadani84
0

Answer :- Type casting available in many programming languages is an example of changing an expression from one data type to another.

Example :- Converting float to integer

int float_to_int(float a)   // example: a = 2.79

{

   int b = (int)a;   // typecast float to int

   return b;         // returns 2

}

Similar questions