Home
C++
Bitset
Class
Console
Data Structure
Data Type
Deque
Development
File
Function
Generic
Language
List
Map Multimap
Overload
Pointer
Qt
Queue Stack
Set Multiset
STL Algorithms Binary search
STL Algorithms Heap
STL Algorithms Helper
STL Algorithms Iterator
STL Algorithms Merge
STL Algorithms Min Max
STL Algorithms Modifying sequence operations
STL Algorithms Non modifying sequence operations
STL Algorithms Sorting
STL Basics
String
Valarray
Vector
Output tab : Escape Sequences « Development « C++
C++
Development
Escape Sequences
Output tab
#include <iostream> using namespace std;
int
main() { cout <<
"A\tB\tC"
;
return
0; }
Related examples in the same category
1.
Demonstrate some escape sequences: \t, tn and \b
2.
cout: tab, double quote, and new line