-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNamsteDuniya.cpp
More file actions
47 lines (35 loc) · 767 Bytes
/
NamsteDuniya.cpp
File metadata and controls
47 lines (35 loc) · 767 Bytes
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
#include <iostream>
using namespace std;
int main()
{
/*
cout << "Namaste Duniya " << endl;
cout << "Hello World " << endl;
int a = 23;
cout<< a << endl;
float f = 3.4;
cout << f<< endl;
char ch = 'a';
cout << ch << endl;
bool bl = true;
cout << bl << endl ;
double d = 35334;
cout << d << endl;
int size = sizeof(a);
cout << "Size of a is: " << size << " " << a <<endl;
int a = 'a';
cout << a << endl;
char ch = 99;
cout << ch << endl;
char ch1 = 123456;
cout << ch1 << endl;
unsigned int a = -112;
cout << a << endl;
int a = 2.0/5;
cout << a << endl;
cout << 2.0/5 << endl;
*/
int b = 2;
int c = 3;
cout << (b==c) << endl;
}