init
This commit is contained in:
10
c/calculator.c
Normal file
10
c/calculator.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("input expression: ");
|
||||
char input[16];
|
||||
fgets(input,16,stdin);
|
||||
printf("input: %s",input);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user