To create a new line using the write function in C programming, should i do
- write (1, ‘\n’, 1) or
- write (1, “\n”, 1) ?
What difference does the single and double quotes make?
To create a new line using the write function in C programming, should i do
What difference does the single and double quotes make?