wrote most of report
This commit is contained in:
12
programs/prog2/main.c
Normal file
12
programs/prog2/main.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user