8 lines · c
1int main(int argc, char **argv) {2 // This is to be viewed in a 80-column terminal, so make the line below more3 // than 120 characters wide, to span at least two lines.4 int a_variable_with_a_very_loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong_name = 22;5 int shortvar = 1;6 return a_variable_with_a_very_loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong_name; // Break here7}8