About
Contact
QtCreator
KDevelop
Solarized
1
int
to_be_interrupted
(
int
);
2
3
int
main
(
) {
4
int
c
=
10
;
5
c
=
to_be_interrupted
(
c
);
6
return
c
;
7
}
8