added programs

This commit is contained in:
2025-04-30 01:50:13 +09:00
parent 6acb05157f
commit 88519283e1
20 changed files with 132 additions and 1 deletions

12
programs/prog5/main.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main(void) {
int no;
printf("Input an integer: ");
scanf("%d", &no);
printf("You inputed %d.\n", no);
return 0;
}