blob: 87b7eae6ac5dd019621f98e2880f0357911ab08c (
plain) (
blame)
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
|
class myClass {
public:
myClass() = default;
~myClass() {}
void myMehtod1(void) {}
void myMehtod2(void) {}
private:
int a;
float b;
};
struct myStruct {
myStruct();
~myStruct();
};
union myUnion {
int a;
double b;
int app;
};
struct verymuchStruct {
int myinteger;
int yourinteger;
int ourinteger;
};
void myFunc1(void) {}
void myFunc2(void) {}
int main (int argc, char** argv) {
myClass mc;
mc.myMehtod1();
mc.myMehtod2();
int a;
float b;
int c,d;
a = c+d;
return 0;
}
|