]> git.llucax.com Git - software/bife/bife++.git/blob - tests/test.cpp
- Normalized Fallback constructor to be the same of Widget (or Container).
[software/bife/bife++.git] / tests / test.cpp
1 //: C03:Specify.cpp
2 // Demonstrates the use of specifiers
3 #include <iostream>
4 using namespace std;
5 int main() {
6   char c;
7   unsigned char cu;
8   int i;
9   unsigned int iu;
10   short int is;
11   short iis; // Same as short int
12   unsigned short int isu;
13   unsigned short iisu;
14   long int il;
15   long iil;  // Same as long int
16   unsigned long int ilu;
17   unsigned long iilu;
18   float f;
19   double d;
20   long double ld;
21   cout 
22     << "\n char= " << sizeof(c)
23     << "\n unsigned char = " << sizeof(cu)
24     << "\n int = " << sizeof(i)
25     << "\n unsigned int = " << sizeof(iu)
26     << "\n short = " << sizeof(is)
27     << "\n unsigned short = " << sizeof(isu)
28     << "\n long = " << sizeof(il) 
29     << "\n unsigned long = " << sizeof(ilu)
30     << "\n float = " << sizeof(f)
31     << "\n double = " << sizeof(d)
32     << "\n long double = " << sizeof(ld) 
33     << endl;
34 }