Files
c-course/c-basic/scanf_example_two_numbers.c
2025-06-17 13:26:59 +03:00

14 lines
187 B
C

#include "scanf_example_two_numbers.h"
int scan_two_numbers()
{
int a, b;
printf("enter two numbers:");
scanf("%d%d", &a, &b);
printf("a = %d, b = %d\n", a, b);
return 0;
}