このコードをデバッグモードで実行する場合:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
printf("Values entered: %d %d %d\n", a, b, c);
return EXIT_SUCCESS;
}
プログラムはユーザー入力を要求せず、出力するだけです。
入力された値:18 78 2130026496