I want to define a path like this:
#define PATH /abc/xyz/lmn
This PATH is a directory which has files foo1, foo2, foo3, ... foo115.
How can I use this #define in the "open" call to open foo1, foo2, ... foo115 ?
I want to basically do this using the directive:
fd = open("/abc/xyz/lmn/foo1", O_RDONLY);