#include int main() { printf("input expression: "); char input[16]; fgets(input,16,stdin); printf("input: %s",input); return 0; }