Slide Set - 09
Slide Set - 09
Slide Set - 09
CP & CPSA
17ME & 17PG
Contents
• The endl is one of the manipulator which changes the format of cout
statement.
• It brings the text on new line.
• It is used with in cout statement.
• The name endl is included in std namespace.
endl Manipulator
#include<iostream>
#include<conio.h>
int main()
{
cout<<“17-Batch"<<endl;
cout<<"MUET"<<endl;
cout<<"Jamshoro";
getch();
return 0;
}
endl Manipulator
Output on monitor screen
endl Manipulator
Same program can also be written as
#include<iostream>
#include<conio.h>
int main()
{
cout<<“17-Batch"<<endl<<"MUET"<<endl<<"Jamshoro";
getch();
return 0;
}
endl Manipulator
Same program can also be written as
#include<iostream>
#include<conio.h>
int main()
{
std::cout<<“17-Batch"<<std::endl;
std::cout<<"MUET"<<std::endl;
std::cout<<"Jamshoro";
getch();
return 0;
}
Escape Sequence
int main()
{
cout<<“17-Batch\nMUET\nJamshoro";
getch();
return 0;
}
Escape Sequence ( \n )
Same program can also be written as
#include<iostream>
#include<conio.h>
int main()
{
cout<<“17-Batch\n";
cout<<"MUET\n";
cout<<"Jamshoro";
getch();
return 0;
}
Escape Sequence ( \n )
Escape Sequence ( \t )
#include<iostream>
#include<conio.h>
int main()
{
cout<<“17-Batch\tMUET\tJamshoro";
getch();
return 0;
}
Escape Sequence ( \t )
Escape Sequence ( \’ ) ( \” ) ( \\ )
#include<iostream>
#include<conio.h>
int main()
{
cout<<"\“17-Batch\" \n";
cout<<"\'MUET\'\t \\Jamshoro";
getch();
return 0;
}
Escape Sequence ( \’ ) ( \” ) ( \\ )
Escape Sequence
• Comment is the text that is used to explain the code inside the program.
• A comment is a line (or multiple lines) of text that are inserted into the source code
to explain what the code is doing.
• The programmer writes the comments in the program to make is easier to read for
other persons (who want to read it).
• The comments are always ignored (not executed) by the compiler.
• The comments are non-executable statements in the program.
• Compiler does not consider comments as part of the program.
• Comments are also helpful during debugging the program.
Types of Comments
For Example:
getch(); //gets single character from the keyboard
Multi-Line Comment
• Multi-Line comment, comments out multiple lines of the code.
• It starts with slash asterisk /* .
• It ends with asterisk slash */.
• Any text written in between /* and */ is ignored by the compiler and is
considered as the comment.
For Example:
/*This program displays string on screen
It is written by Anam Memon
It is a basic C++ program */
Comments Example
/*This program displays string on screen
It is written by Anam Memon
All the text in GRAY
It is a basic C++ program */ color is comment