Write function for new line

To create a new line using the write function in C programming, should i do

  1. write (1, ‘\n’, 1) or
  2. write (1, “\n”, 1) ?

What difference does the single and double quotes make?