Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~1K People Reached
Favorite Forums

10 Posted Topics

Member Avatar for needhelpincplus
Member Avatar for Q8iEnG

First input an infix expression. Push a left parenthesis onto stack and a right parenthesis at the end of the expression. Then read the expression from left to right. If an operand or left parenthesis is encountered, push it onto stack. If an operator is encountered, repeatedly pop from stack …

Member Avatar for Q8iEnG
0
163
Member Avatar for grommet2481

you can use the width function [CODE]#include<iostream> #include<iomanip> using namespace std; int main() { cout.width(15);cout<<"Welcome\n"; cout.width(15);cout<<"to DaniWeb\n"; cin.get(); return 0; }[/CODE] It will only help when you need right aligning.

Member Avatar for Sky Diploma
0
98
Member Avatar for jmines

I want to change the background color of the output screen in Dev-C++. How can I do that? I searched the Internet but didn't find any. Any help on which function should I use?

Member Avatar for Salem
0
181
Member Avatar for jmines

This is my program of stacks. The problem is this that it does not show output. whenever I run the program, the output screen flashes and nothing else happens. (using Dev-C++) Don't know what's the problem with it. [CODE] //****************************STACKS******************************** //===============Stacks using linked list(Arrays)================= #include<iostream> using namespace std; int avail=-1, …

Member Avatar for jmines
0
129
Member Avatar for jmines

I have a problem in reading from file. I want the program to keep on reading from the file and store it in a buffer until \n\n is encountered. Then I want it to input an integer value from the user and then when the user presses enter it should …

Member Avatar for Agni
0
52
Member Avatar for anbuninja

why don't you use the label command if the user wants to play again and again.

Member Avatar for localp
0
148
Member Avatar for jmines

I am new to streams and files in C++. I am having a problem in this code. When i run the program, and after entering the password, a message is displayed "error opening infile". Why the program is not reading from the file or opening it? [CODE]#include<iostream> #include<string> #include<fstream> #include<iomanip> …

Member Avatar for jmines
0
116
Member Avatar for jmines

I am trying to make an array of strings in C++. The problem is this that i need the strings to be multiline. Is this possible in C++? how can we do it?

Member Avatar for jmines
0
99
Member Avatar for gehad3003

I am a novice programmer and new to C++ i want to ask why we use an underscore here in ch=_getch();

Member Avatar for Narue
0
139

The End.