\\ is the escape sequence that sticks a backslash character into a string. : String Escape « String « C Tutorial






#include <stdio.h>
int main()
{
   printf(" \\ string.");
  
   return 0;
}
\ string.








3.5.String Escape
3.5.1.Using escape: backslash
3.5.2.Add new line character
3.5.3.Escape Quotations
3.5.4.\\ is the escape sequence that sticks a backslash character into a string.