Skip to content

Commit 1b88502

Browse files
0_int_long_float_double.cpp
1 parent 6082cca commit 1b88502

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

0_int_long_float_double.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
int main() {
5+
0; //int
6+
0L; //long
7+
0LL; //long long
8+
0UL; //unsigned long
9+
0.0; //double
10+
0.0f; //float
11+
0.0L; //long double
12+
return 0;
13+
}

0 commit comments

Comments
 (0)