i want to print like this
*************** * some text with blank *************** *****
using setw() and setfill(*) how to to this ?
and also want to print like this
some text ***** some text
User Profile
Collapse
-
setfill(*) and setw() help needed!
-
string manipulator help
why im getting "expected primary expression before ) token"
here is code:
#include <iostream>
#include <cstdlib>
#include <iomanip>
using namespace std;
int main()
{
long number;
number = 12345678 ;
cout << "number =" << setfill(*) << setw(12) << number<<endl; -
How to overlaod ++ operator for a object having 2 data members?
how to increment both data members and display both member data separately. -
just want to increment existing value, -
How to increment data members of dynamically created object?
im to first increment data members of object that has not created dynamically (i have done with this part),now i have created object dynamically and how to increment its data which i have passed as argument as:
obj3 = new manage(35 , 36)
No activity results to display
Show More
Leave a comment: