Posts by user96996 • 21 points
1 post
-
2
votes1
answer64
viewsQ: Retrieve arguments passed via ARGV in the terminal
I have a make file. Inside this make file, I call this file that has it: set -f; echo $1 | bc I want to recover function value in C for that Makefile file. Example: ./a.out "12 + 12" result: 24…