12 lines
166 B
C
12 lines
166 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void sum(int a, int b)
|
||
|
{
|
||
|
int ret = a + b;
|
||
|
printf("%d + %d = %d\n", a, b, ret);
|
||
|
}
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
return 0;
|
||
|
}
|