I have to initialize string as \"Rose\" including Quotation Mark. How to write \" in our string?
Use the escape character: \
NSString *r = @"\"Rose\"";
You can find additional information about Escape character and String literal.