Assume like I have a #define
something like
#define LOCATION /usr/lib/siara/
Now i want to touch a file in that location provided I have permissions to create. I want to do something like this.
system("touch $(LOCATION)/myfile.txt")
But it is not working. Any idea how to resolve this issue