I wish to write the following line to a file in C.
<style type = "text/css" title = "screen" media="screen, print">
My question is how to I write the double quote character " ? If I do fprintf("<style type = "text/css" title...etc), it will regard the quote before the word "text" as the end of the string. How can I make it treat that double quote as a literal? The same goes for the double quotes around the word "screen" and "screen, print".
Start Free Trial