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