About
Contact
QtCreator
KDevelop
Solarized
1
struct
Structure
{
2
int
m_field
;
3
void
fun
() {
4
// check this
5
}
6
};
7
8
int
main
() {
9
Structure
s
;
10
s
.
m_field
=
30
;
11
s
.
fun
();
12
}
13