fd1 = open("/dev/test_kft" "1",00);
What does "/dev/test_kft" "1"
mean?
It's implicit concatenation as performed by the compiler. It results in "/dev/test_kft1"
.
The preprocessor concatenates adjacent string literals, so that line is the same as
fd1 = open("/dev/test_kft1", 00);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With