10 lines
142 B
C
Raw Normal View History

2017-03-30 16:56:49 +02:00
#include <stdlib.h>
#include <stdio.h>
#include "libadd.h"
int add(int a, int b) {
printf("%d + %d = %d\n", a, b, a+b);
return a + b;
}