-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypeCasting.cpp
More file actions
49 lines (46 loc) · 1.1 KB
/
typeCasting.cpp
File metadata and controls
49 lines (46 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Language: C++ / Cpp
// Topic : [TypeCast]
// example : 👉👉 [1]
//
// ================================================
#include <iostream>
using namespace std;
int main(){
int x ;
cout<<"Enter Number : " ;
cin>> x;
float y = (float )x ;
cout<<"output is : " << y<<endl;
return 0;
}
//// ================================================
// Language: C++ / Cpp
// Topic : [TypeCast]
// example : 👉👉 [2]
//
// ================================================
#include <iostream>
using namespace std;
int main(){
int x ;
cout<<"Enter Number : " ;
cin>> x;
float y = (float )x ;
cout<<"output is : " << y/2<<endl;
return 0;
}
//// ================================================
// Language: C++ / Cpp
// Topic : [TypeCast]
// example : 👉👉 [3]
//
// ================================================
#include <iostream>
using namespace std;
int main(){
char ch;
cout<<"enter";
cin>>ch;
cout<<"output" <<(int)ch<<endl;
return 0;
}