wrote most of report

This commit is contained in:
2025-04-27 14:34:55 +09:00
parent 9f68b841b2
commit d8ae49b00d
18 changed files with 174 additions and 82 deletions

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

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