I am using Sublime to program in C but when the code is compiled it keeps returning [Finished in 1.1s with exit code 10]
. What does that mean? What is going on?
#include <stdio.h>
void main()
{
int x;
scanf("%d", &x);
printf("%d", x);
}