c-course/c-basic/main.c

11 lines
117 B
C
Raw Normal View History

#include <stdio.h>
2025-06-17 13:26:59 +03:00
#include "scanf_example_two_numbers.h"
2025-06-16 21:32:07 +03:00
int main() {
2025-06-17 13:10:20 +03:00
2025-06-17 13:26:59 +03:00
scan_two_numbers();
2025-06-17 13:10:20 +03:00
2025-06-16 21:32:07 +03:00
return 0;
}
2025-06-17 13:10:20 +03:00