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?
786 visits
Outline:ইনক্ৰিমেন্ত এন্ড ডিক্ৰিমেন্ত অপাৰেতৰ(Increment and Decrement Operators)আউতলাইন(Outline): ইনক্ৰিমেন্ত অপাৰেতৰ (Increment Operator) উদাহৰণ: ++(example: ++) পষ্টফিক্স ইনক্ৰিমেন্ত (Postfix increment) উদাহৰণ: a++(example: a++) প্ৰিফিক্স ইনক্ৰিমেন্ত (Prefix increment) উদাহৰণ: ++a(example: ++a) ডিক্ৰিমেন্ত অপাৰেতৰ (Decrement Operator) উদাহৰণ: --(example: --) পষ্টফিক্স ডিক্ৰিমেন্ত (Postfix decrement) উদাহৰণ: a--(example: a--) প্ৰিফিক্স ডিক্ৰিমেন্ত (Prefix decrement) উদাহৰণ: --a(example: --a) টাইপ কাষ্টিঙ (Typecasting) ভুল(Errors)
ইনক্ৰিমেন্ত এন্ড ডিক্ৰিমেন্ত অপাৰেতৰ(Increment and Decrement Operators)আউতলাইন(Outline): ইনক্ৰিমেন্ত অপাৰেতৰ (Increment Operator) উদাহৰণ: ++(example: ++) পষ্টফিক্স ইনক্ৰিমেন্ত (Postfix increment) উদাহৰণ: a++(example: a++) প্ৰিফিক্স ইনক্ৰিমেন্ত (Prefix increment) উদাহৰণ: ++a(example: ++a) ডিক্ৰিমেন্ত অপাৰেতৰ (Decrement Operator) উদাহৰণ: --(example: --) পষ্টফিক্স ডিক্ৰিমেন্ত (Postfix decrement) উদাহৰণ: a--(example: a--) প্ৰিফিক্স ডিক্ৰিমেন্ত (Prefix decrement) উদাহৰণ: --a(example: --a) টাইপ কাষ্টিঙ (Typecasting) ভুল(Errors)
Show video info
Pre-requisite