This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/C8/ex2.c

15 lines
189 B
C
Raw Normal View History

2023-10-03 11:50:05 +00:00
#include <stdio.h>
int main() {
int input;
printf("Enter an integer: ");
scanf("%d", &input);
if (input >= 0 && input <= 10) {
printf("The number is in range\n");
}
return 0;
}