11 lines
147 B
C
11 lines
147 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("input expression: ");
|
|
char input[16];
|
|
fgets(input,16,stdin);
|
|
printf("input: %s",input);
|
|
return 0;
|
|
}
|
|
|