Skip to content

C++ Program to Demonstrate ends Manipulator

C++ Program to Demonstrate ends Manipulator

Code:

/*C++ Program to Demonstrate ends Manipulator*/
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main()
{
int number=123;
clrscr();
cout<< ‘”‘ << “number = ” <<number<<ends;
cout<< ‘”‘ << endl;
getch();
}

Sample Output:

Comment bellow for your Query and Feedback

Leave a Reply

Your email address will not be published. Required fields are marked *

error: Content is protected !!