What is << symbol in C++?
In C++, the << symbol is an overloaded operator that can be used in two main contexts:
1. Output Stream Operator
When used with the std::cout object, the << operator is called the insertion operator. It is used to output data to the console (standard output).
Example:
int x = 10; std::cout << "The value of x is: " << x << std::endl;
- In this case,
<<takes the value ofxand "inserts" it into the output stream, displaying it in the console. - The output for the above code would be:
The value of x is: 10
2. Bitwise Left Shift Operator
The << operator is also used as the bitwise left shift operator. It shifts the bits of an integer to the left by a specified number of positions, effectively multiplying the number by powers of two.
Example:
int a = 5; // Binary: 0000 0101 int result = a << 1; // Left shift by 1 bit
- After the left shift,
abecomes0000 1010, which is10in decimal. - The left shift operator can be used for efficient multiplication by powers of two.
Summary:
std::cout <<: Used to print values to the console.<<as bitwise operator: Shifts bits to the left, typically used in low-level programming.
Sources:
TAGS
Coding Interview
CONTRIBUTOR
Design Gurus Team
-
GET YOUR FREE
Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Ensuring code extensibility to handle changing requirements
How to write an effective thank-you email after interviews?
Addressing performance vs. complexity balance in final solutions
What is the first step in data engineering?
Emphasizing data correctness and integrity in system discussions
Articulating system boundaries and interfaces in design solutions
Related Courses

Grokking the Coding Interview: Patterns for Coding Questions
The 24 essential patterns behind every coding interview question. Available in Java, Python, JavaScript, C++, C#, and Go. The most comprehensive coding interview course with 543 lessons. A smarter alternative to grinding LeetCode.
4.6
$197

Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
3.9
$72

Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
4
$78
One-Stop Portal For Tech Interviews.
Copyright © 2026 Design Gurus, LLC. All rights reserved.