8 lines
76 B
C
8 lines
76 B
C
|
int main() {
|
||
|
int val = 0;
|
||
|
// Break here
|
||
|
val++;
|
||
|
val++;
|
||
|
return 0;
|
||
|
}
|