MIPI_BaseC_WebinarFRTK/16_Seminar03/08_scanf.c .c

9 lines
151 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
int a=-1, b=-1;
int res = scanf("%d,%d", &a, &b);
printf ("res = %d a=%d b=%d\n", res , a, b);
return 0;
}