7 lines
85 B
C
7 lines
85 B
C
|
#include <stdio.h>
|
||
|
#include <adder.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("%d\n", add(5, 7));
|
||
|
}
|