Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 14
Member Avatar for gehad3003

Hi I have a homework assignment that ask you to complete an empty project that contains a queue and stack. the data should be stored in a circular array. Functions of the queue are: pushBack : to insert in the back pushFront : to insert in the front popBack : …

Member Avatar for gehad3003
0
182
Member Avatar for gehad3003

Hi I finally upgraded a code for password i hope you like it. [CODE] #include <conio.h> #include <iostream> using namespace std; int main() { char *tempPassword = new char; cout << "enter your password: "; char ch = _getch(); int j = 0; while (ch != '\r') { if (ch …

Member Avatar for Narue
0
124
Member Avatar for gehad3003

Hi I want to have a variable that contains item number. int didn't work because i want to make the item number start with 3 or 4 zeros. if i use char * I can't increment the value of char? any help will be appreciated

Member Avatar for gehad3003
0
161
Member Avatar for gehad3003

how can i make the program print stars instead of typed letters. like password. for example enter the username: mike enter the password: **** **** = 1234 mike will go to a username variable and 1234 will go into password variable thanks

Member Avatar for gehad3003
0
94
Member Avatar for gehad3003

hi can any one help with Mersenne Prime numbers calculator. A prime number is defined as being a Mersenne Prime if it is of the form 2^n – 1, where n is any integer greater than 1 display all the Mersenne primes from 2 through 1,000,000. Your results should be …

Member Avatar for gehad3003
0
791