1
0
test3/core.c
hasslesstech 9eb013c7e2
Some checks failed
Build / build (push) Failing after 1m17s
more comm
2025-05-24 17:18:04 +03:00

18 lines
210 B
C

#include <stdio.h>
int f(int c, int d);
int
main(int argc, char **argv)
{
int x, y;
sscanf(argv[1], "%d", &x);
sscanf(argv[2], "%d", &y);
int res = f(x, y);
printf("un res = %d\n", res);
return 0;
}