Format specifiers in different Programming Languages
Last Updated :
01 Nov, 2023

In C language format specifiers are used to 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(). Below are the some format specifiers in C:
- %d or %i: Integer Format Specifier
- %c: Character Format Specifier
- %f: Floating-Point Format Specifier.
- %s: String Format Specifier.
- %lf: Double Format Specifier.
- %e or %E: Floating-Point Format Specifier ( Exponential ).
In C programming, we use scanf() for formatted input, and printf() for formatted output, gets() or getchar() for unformatted input, and puts() or putchar() for unformatted output.
Below is the program to illustrate some format specifiers in C:
C
// C program to illustrate format
// specifiers in C
#include <stdio.h>
// Driver Code
int main()
{
int N = 10;
double F = 42.152;
// Integer formatted output
printf("%d \n", N);
// Exponential formatted output
printf("%e \n", F);
// Unformatted String Output
puts("Welcome to GeeksforGeeks!");
}
Output10
4.215200e+01
Welcome to GeeksforGeeks!

As C++ is an extension of C Language but still we use input and output streams in order to format the input or output. Below are some input/output used in C++:
- Standard Input Stream(cin): In C++, cin is an object of istream. It takes input from the standard input device i.e., keyboard. cin is used along with an extraction operator (>>) in order to get or receive a stream of characters.
- Standard Output Stream(cout): In C++, cout is an object of ostream. It is used to print the output to standard output device i.e., Monitor. cout is used along with insertion operator(<<). If we use "endl" it will produce a newline character just like "\n" but it also has an additional behavior i.e., the output is to be physically written into a device if it wasn't already. it affects the fully buffered streams but cout isn't fully buffered so it is a good practice to use endl with cout.
- Unbuffered Standard Error Stream(cerr): In C++ cerr is an object of ostream. cerr is used along with insertion operator (<<). Unlike Buffered Output Unbuffered Output keeps writing the data to disk. In critical errors where there is a chance of system crash Buffered output isn't preferred. But cerr is slow since it keeps on writing data into the disk.
- Buffered Standard Error Stream (clog): In C++ clog is used for logging purposes. It is an object of ostream. clog is used along with insertion operator (<<). In some cases, Buffered output is more efficient than unbuffered Output. Incase of Buffered output, all the output errors are stored in a variable and writes to disk all at a time.
Below is some Input/Output stream functions:
- setw() or width(): It is used to set the width to a given value. The output will be displayed in the given width.
- setprecision() or precision(): In float value, if we need to set a number of values to be printed after the decimal point.
- setiosflags(): It is used to set flags for formatting output.
- setfill() or fill(): It is used to fill in the blank space of a field.
- resetiosflags(): It is used to remove the flags that have been set.
Below is the program to illustrate some formatting streams in C++:
C++
// C++ program to illustrate format
// specifiers in C++
#include <bits/stdc++.h>
using namespace std;
// Driver Code
int main()
{
string str = "GeeksforGeeks!";
// Output stream to print string
cout << str << endl;
float f = 12.4578452f;
// Print floating value upto N digits
cout << setprecision(4) << f << endl;
// To print the hexadecimal value of 42
cout << hex << 42 << endl;
return 0;
}
OutputGeeksforGeeks!
12.46
2a

In Java, Formatting output can be done in 2 different ways:
- System.out.printf(): It takes multiple arguments unlike print() and println() as print() and println() takes single argument.
- System.out.format(): It is similar to printf(). Both printf() and format() belongs to PrintStream of java.io package. This printf() and format() are similar to printf() function in C, we can also use flags with format specifiers.
Below is the program to illustrate some format specifiers in Python:
Java
// Java program to illustrate
// some format specifiers
import java.util.Scanner;
import java.io.PrintStream;
// Class Main
public class Main {
// Driver Code
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
// Name and Age
String name = "GeeksforGeeks";
int age = 5;
// Formatted String using printf()
System.out.printf(
"Name: %s, Age: %d",
name, age);
System.out.println();
// Formatted String using format()
System.out.format(
"%nName: %s%nAge: %d%n",
name, age);
}
}
OutputName: GeeksforGeeks, Age: 5
Name: GeeksforGeeks
Age: 5
Formatting in Python

Python is currently the most widely used multi-purpose, high-level programming language. It is a dynamic language and very easy for formatting. <a href="https://www.geeksforgeeks.org/taking-input-in-python/">input() function in python always returns a string, by converting them into our required datatype we can perform different operations.
- Unformatted Specifiers: The print() function in Python is used to print the arguments passed in this function. We can use sep parameter to print the passed arguments with a separator.
- Formatted Specifiers: For formatted Output, we use format() function in Python in print() function to format the output.
For String formatting, Python uses C-style string formatting to create new, formatted strings. The "%" operator is used to format a set of variables enclosed in a list, together with a format string, which contains normal text together with "argument specifiers", special symbols like "%s" and "%d".
Below is the program to illustrate some format specifiers in Python:
Python3
# Python program to illustrate
# format specifiers in Python
str = "GeeksforGeeks"
str1 = "Welcome to"
# Unformatted Output in Python
print("Welcome to GfG !")
# Unformatted Output using separator
# print("Welcome to GfG !", sep = ", ")
print(str1, str, sep = ", ");
# String Formatting
print("Welcome to % s !" % str);
# String Formatting
name = "GfG"
age = 4
print("% s is % d years old." % (name, age))
# Formatting using format()
print("Hey, Welcome to {}!".format(str, age))
OutputWelcome to GfG !
Welcome to, GeeksforGeeks
Welcome to GeeksforGeeks!
GfG is 4 years old.
Hey, Welcome to GeeksforGeeks!
Similar Reads
String to Integer in Different Programming Languages Below are example programs to do string to integer conversion in different programming languages.C++#include <bits/stdc++.h> using namespace std; int main() { int val; char strn1[] = "12546"; val = atoi(strn1); cout << "String value = " << strn1 << endl; cout << "Intege
3 min read
C/C++ Program for String Search C/C++ Program for Naive Pattern SearchingC/C++ Program for KMP AlgorithmC/C++ Program for Rabin-Karp AlgorithmC/C++ Program for A Naive Pattern Searching QuestionC/C++ Program for Finite AutomataC/C++ Program for Efficient Construction of Finite AutomataC/C++ Program for Boyer Moore Algorithm â Bad
1 min read
Comparing Python with C and C++ In the following article, we will compare the 3 most used coding languages from a beginner's perspective. It will help you to learn basics of all the 3 languages together while saving your time and will also help you to inter shift from one language you know to the other which you don't. Let's discu
7 min read
Difference Between Syntax and Semantics Syntax: It refers to the rules and regulations for writing any statement in a programming language like C/C++.It does not have to do anything with the meaning of the statement.A statement is syntactically valid if it follows all the rules.It is related to the grammar and structure of the language.Se
4 min read
String C/C++ Programs C program to swap two StringsC Program to Sort an array of names or stringsC Program to Check if a Given String is PalindromeC/C++ Program for Return maximum occurring character in the input stringC/C++ Program for Remove all duplicates from the input string.C/C++ Program for Print all the duplicate
3 min read
C/C++ Programs Array C/C++ ProgramsString C/C++ ProgramsLinked List C/C++ ProgramsStack and Queue C/C++ ProgramsTree C/C++ ProgramsGraph C/C++ ProgramsBit Magic C/C++ ProgramsMisc C/C++ ProgramsMathematical C/C++ ProgramsDynamic Programming C/C++ ProgramsGreedy Algorithm C/C++ ProgramsBacktracking C/C++ ProgramsDi
1 min read
ASCII Value of a Character in C In this article, we will discuss about the ASCII values that are bit numbers used to represent the character in the C programming language. We will also discuss why the ASCII values are needed and how to find the ASCII value of a given character in a C program.Table of ContentWhat is ASCII Value of
4 min read
Getting started with C C language is a popular programming language that was developed in 1970 by Dennis Ritchie at Bell Labs. The C programming language was developed primarily to build the UNIX operating system. It is widely used because it is simple, powerful, efficient, and portable. Features of C Programming Language
5 min read
Output in C++ In this article, we will discuss the very basic and most common I/O operations required for C++ programming. C++ runs on lots of platforms like Windows, Linux, Unix, Mac, etc. This is the most basic method for handling output in C++.The cout is used very often for printing outputs, i.e., on the moni
2 min read
Print "GeeksforGeeks" in 10 different programming languages The most elementary part of learning any computer programming language is the ability to print a desired text on the screen or console. Thus, the task of this article is to guide programmers new to any of the 10 different languages discussed below, i.e. GO, Fortran, Pascal, Scala, Perl, ADA, Ruby, K
4 min read