11 lines
140 B
C
11 lines
140 B
C
|
struct Structure {
|
||
|
int number;
|
||
|
};
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
struct Structure s;
|
||
|
s.number = 30;
|
||
|
// break here
|
||
|
return 0;
|
||
|
}
|