Which operator tells the computer to convert the data type of a value?
Which operator tells the computer to convert the data type of a value?
کون سا آپریٹر کمپیوٹر کو کسی قدر کے ڈیٹا کی قسم کو تبدیل کرنے کے لئے کہتا ہے؟
Explanation
The cast operator is used in programming to convert one data type into another.
Example: In C++, (int)3.14 uses cast to convert the float value 3.14 into an integer.