About
Contact
QtCreator
KDevelop
Solarized
1
#include
<stdio.h>
2
3
void
foo
() {
4
printf
(
format:
"hello world from foo"
);
// Set break point at this line.
5
}
6
7
int
main
() {
8
foo
();
9
return
0
;
10
}
11