Posts

Showing posts with the label Combination of characters

Escape sequence | Combination of characters

Definition: The escape sequence are the combination of special characters which is used for format the output result. These are only used to format our output result not input. The general syntax of apply the escape sequence is : #include <iostream> using namespace std; void main () { cout<<" \t \t .....Ali Haider's program....."<<endl<<endl<<endl; cout<<"Thank you for check my program. "<<endl<<endl<<endl;   }   (Here \t is used for  Tab) These are some of the escape sequence of C++ as under : Escape sequence Description Representation \' single quote byte 0x27 in ASCII encoding \" double quote byte 0x22 in ASCII encoding \? question mark byte 0x3f in ASCII encoding \\ backslash byte 0x5c in ASCII encoding \a ...