-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathE1typeCasting.cpp
24 lines (19 loc) · 1.01 KB
/
E1typeCasting.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include<iostream>
// Typecasting of data
//1 - Implicity -- Automatic
// 2 - Explicity -- precede Value with new data type
int main(){
double x = 50.45;
std:: cout<<(int)x<< std::endl;
// ------------------------------------------//
int y =100;
std::cout<<(char)y <<std::endl;
std::cout<<(char) 100 <<std::endl;
//------------------------------------------------------//
int correct = 8; // Answers 8 correct which is int datatype
int questions = 10; // Questions 10 which is int data type
double score = (double)correct/questions *100; // 8/100 = 0.8 as its int it shows = 0
// but casting one of them in double will work
std::cout<<score<<"%"<<std::endl;
return 0;
}