How to solve the expression (a/b)+(c/d) using typecasting in c
#include <iostream>using namespace std;int main() { int a, b, c, d; cout<<"Enter a and b: "; cin>>a>>b; cout<<"Enter c and d: "; cin>>c>>d; float ans = (a/b)+(c/d); cout<<"Answer(without typecast) = "<<ans<<"\n"; ans = ((float)a/b)+((float)c/d); cout<<"Answer(with typecast) = "<<ans<<"\n"; return 0;}Why the output is in 'int' type but not 'float' type?But the same program in C came with output of 'float' type.
In assignment question, i can understand typecasting of given expression but what is the meaning of real division in type casting?
1066 visits
Outline: ఇంక్రిమెంట్ మరియు డిక్రిమేంట్ ఆపరేటర్లు ఇంక్రిమెంట్ ఆపరేటర్, ఉదాహరణకు : ++ పోస్ట్ ఫిక్స్ ఇంక్రిమెంట్, ఉదాహరణకు: a++ ప్రీ ఫిక్స్ ఇంక్రిమెంట్, ఉదాహరణకు: ++a డిక్రిమేంట్ ఆపరేటర్, ఉదాహరణకు: -- పోస్ట్ ఫిక్స్ డిక్రిమేంట్, ఉదాహరణకు: a-- ప్రీఫిక్స్ డిక్రిమేంట్, ఉదాహరణకు: --a టైప్ కాస్టింగ్ తప్పులు
ఇంక్రిమెంట్ మరియు డిక్రిమేంట్ ఆపరేటర్లు ఇంక్రిమెంట్ ఆపరేటర్, ఉదాహరణకు : ++ పోస్ట్ ఫిక్స్ ఇంక్రిమెంట్, ఉదాహరణకు: a++ ప్రీ ఫిక్స్ ఇంక్రిమెంట్, ఉదాహరణకు: ++a డిక్రిమేంట్ ఆపరేటర్, ఉదాహరణకు: -- పోస్ట్ ఫిక్స్ డిక్రిమేంట్, ఉదాహరణకు: a-- ప్రీఫిక్స్ డిక్రిమేంట్, ఉదాహరణకు: --a టైప్ కాస్టింగ్ తప్పులు
Show video info
Pre-requisite