Skip to content

Commit 8fd4f96

Browse files
committed
Update functions.c
1 parent fdab2be commit 8fd4f96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: c/basics/functions.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ int power(int base, int x);
1616
// main() function
1717
int main(void) {
1818
// call function
19-
power(2, 3) // 8
19+
power(2, 3)
20+
// 8
2021

2122
return 0;
2223
}

0 commit comments

Comments
 (0)