Files
NASM/casm/c.c

9 lines
109 B
C

#include <stdio.h>
int sum(int a, int b) {
return a+b;
}
void print(int num) {
printf("%d", num);
}