C programozás help
-
#194
#include <stdio.h>
int add (int a, int b) {
return a+b;
}
main() {
printf ("5 + 2 = %d\n",add(5,2));
}