From 5159fd338e7acc051b661355027909187bdb2bd6 Mon Sep 17 00:00:00 2001 From: "anhhh.11" Date: Wed, 20 May 2020 23:02:31 +0700 Subject: [PATCH] Fix github markdown not display \\n --- 07-printf/questions/questions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07-printf/questions/questions.md b/07-printf/questions/questions.md index c055509..16b56af 100644 --- a/07-printf/questions/questions.md +++ b/07-printf/questions/questions.md @@ -40,12 +40,12 @@ * %v *CORRECT* * %t -## What does "\n" print? +## What does `"\n"` print? * \n * Prints a newline *CORRECT* * Prints an empty string -## What does "\\n" print? +## What does `"\\n"` print? * \n *CORRECT* * Prints a newline * Prints an empty string