fd1 = open("/dev/test_kft" "1",00);
What does "/dev/test_kft" "1" mean?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The explicit form in C is this:
This still does not replicate the fact that the “implicit” concatenation form is place in the rodata segment. In the example I’ve given, it’ll be on the stack. You could put it on the heap with malloc. The implicit version is done at compile time, and preferred if possible.