12 lines
151 B
C
12 lines
151 B
C
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
printf ("Set a breakpoint on this line.\n");
|
|
|
|
return 0; // Set another on this line.
|
|
}
|
|
|
|
|