...
| Code Block | ||||
|---|---|---|---|---|
| ||||
int f(int i) {
/* functionFunction definition */
}
int g(int i) {
int j = f(i);
/* ... */
} |
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
static int f(int i) {
/* functionFunction definition */
}
int g(int i) {
int j = f(i);
/* ... */
}
|
...