From 0363a40dcc9b727bd7267ad64539e35eca6b3551 Mon Sep 17 00:00:00 2001 From: Aditya Oberai <31401437+adityaoberai@users.noreply.github.com> Date: Sat, 10 Nov 2018 03:19:01 +0530 Subject: [PATCH] Grammatical Edits (#22595) --- guide/english/c/format-specifiers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/format-specifiers/index.md b/guide/english/c/format-specifiers/index.md index 5cdcb28624..e0ff417d06 100644 --- a/guide/english/c/format-specifiers/index.md +++ b/guide/english/c/format-specifiers/index.md @@ -3,7 +3,7 @@ title: Format Specifiers --- # Format Specifiers -Format specifiers defines the type of data to be printed on standard output. Whether to print formatted output or to take formatted input we need format specifiers. Format specifiers are also called as format string.Format specifier is used during input and output. It is a way to tell the compiler what type of data is in a variable during taking input using scanf() or printing using printf(). Some examples are %c, %d, %f, etc. +Format specifiers define the type of data that is to be printed on standard output. We need format specifiers in order to take the formatted input or print the formatted output. Format specifiers are also called as format string. Format specifier is used during input and output. It is a way to tell the compiler what type of data is in a variable during taking input using scanf() or printing using printf(). Some examples are %c, %d, %f, etc. Character format specifier : %c