Increment And Decrement Operators - Nepali
- subtitles off
- captions off
- English
- Nepali
- Questions posted on Forums
- C and Cpp Tutorials - Nepali
-
Assignments
How to solve the expression (a/b)+(c/d) using typecasting in c
11-12M 20-30S Ammu15
Answer last updated on: Aug. 21, 2024, 9:48 p.m.
-
Assignments
#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.
11-12M 20-30S Sujan_A_T
Answer last updated on: Aug. 19, 2024, 3:05 p.m.
-
type casting
In assignment question, i can understand typecasting of given expression but what is the meaning of real division in type casting?
11-12M 50-60S prabhu84a
Answer last updated on: Feb. 29, 2020, 4:18 p.m.
-
1First C Program
-
2First Cpp Program
-
3Tokens
-
4Functions
-
5Scope Of Variables
-
6If And Else If statement
-
7Nested If And Switch Statement
-
Increment And Decrement Operators
-
9Arithmetic Operators
-
10Relational Operators
-
11Logical Operators
-
12Loops
-
13Arrays
-
14Working With 2D Arrays
-
15Strings
-
16String Library Functions
-
17Working With Structures
-
18Understanding Pointers
-
19Function Call
-
20File Handling In C
Questions posted on ST Forums:
1241 visits
Outline:
इन्क्रिमेंट र डीक्रिमेंट अपरेटर -इन्क्रिमेंट अपरेटर --उदाहरण: ++ -पोस्टफिक्स् इन्क्रिमेंट --उदाहरण: a++ -प्रेफिक्स इन्क्रिमेंट --उदाहरण: ++a -डीक्रिमेंट अपरेटर --उदाहरण: -- -पोस्टफिक्स् डीक्रिमेंट -example: a-- -प्रेफिक्स डीक्रिमेंट --उदाहरण: --a -टाइपकास्टिंग -गल्तिहरु
Width: | 800 | Height: | 672 |
---|---|---|---|
Duration: | 00:11:17 | Size: | 6.4 MB |
Show video info