49,761 Topics

Member Avatar for
Member Avatar for amin234

record manager for computer inventory ,it consist of two modules application manager to allow user open database ,create,update. application program interface and interface store to get block ,write block.

Member Avatar for rubberman
0
58
Member Avatar for Ixiondbz

I want to learn step by step.I tried learning Html/css and it was fun(long time before) so dont remember. I basically have quite a lot of computer knowledge and how it works but no programming. I have recently started learning C++ from the book: "C++ Primer 5th edition". I am …

Member Avatar for pritaeas
0
143
Member Avatar for rose_2

what's the wrong with this code ?? ..it doesn't make the prossecc just typing the marks then nothing !! //program to get degrees of ten students in exam and compute the average exam degree of them #include<iostream> using namespace std; int main() { int mark,i; int average,sum=0; cout<<"enter 10 marks …

Member Avatar for rose_2
0
138
Member Avatar for fawadali

Write a C++ program that will print the pattern as shown below: Output: * *** ***** ******* ********* ********* ******* ***** *** *

Member Avatar for dbfud1988
0
192
Member Avatar for rose_2

In the following code : what's the difference between int and int& ? and what does it mean ?? i got something that n2 and n3 are changed only but not n1 and n4 !! is that related to (int& ) ?? #include <iostream> using namespace std; void change(int,int&,int&,int) int …

Member Avatar for rose_2
0
252
Member Avatar for MiicahLiim

Can you please help me do a asterisks of pyramid using the drawbar function, im new to c++ please help. Thank you in advance this is the drawbar function: the output should look like: * *** ***** ******* /*Overloaded drawbar() program.*/ #include<iostream.h> void DrawBar(int Length) /*Diplays a bar of asterisks …

Member Avatar for dbfud1988
0
423
Member Avatar for iqra_2

A bank in your town updates its customers’ accounts at the end of each month. The bank offers two types of accounts: savings and checking. Every customer must maintain a minimum balance. If a customer’s balance falls below the minimum balance, there is a service charge of $10.00 for savings …

Member Avatar for rubberman
-1
142
Member Avatar for Ahmed_57
Member Avatar for tnd2491

Hello All; What i need to do is to display 1000 logs coming from the server into 20 rows continuously.Does anyone have any idea?? I am storing the data strings coming from the server into the vector container. And that i have to display continuously from 0th Row row to …

Member Avatar for Duoas
0
214
Member Avatar for mrhunt
Member Avatar for hira_5
Member Avatar for it@61@sec

I have the following struct definition: struct finfo { string filename; long fsize; bool operator() (finfo i, finfo j){return (i.fsize > j.fsize);} } fstruct; And the following vector definition: vector<finfo> fdata; In the code I use the following statement to sort the vector elements by fsize: sort(fdata.begin(),fdata.end(),fstruct); This works perfectly …

Member Avatar for it@61@sec
0
974
Member Avatar for radhikachopraaa

can i get a program to find whether the character is an alphabet , number or a special character.

Member Avatar for L7Sqr
0
100
Member Avatar for ALEXANDER R
Member Avatar for ALEXANDER R
0
248
Member Avatar for khadikhel.orakzai

write a c++ program that will do the . Enter 10 integer . Pushing on stack and poping on user choice . pushing on queue and poping form queue . Bring the integer in order. Display the calculator selecting oprtion by user choice (+,-,*,%)

0
88
Member Avatar for Transcendent

This what I'm trying to do: Type two or more lines of text into a file. Write a program to open the file, reading each word into a vector<string> object. Iterate over the vector, displaying it to cout. That done, sort the words using the sort() generic algorithm But I'm …

Member Avatar for Lerner
0
287
Member Avatar for umairshabbir6822

******I need help with my project. Here's the specs********** For this project you will implement an AVL tree template and use it to create a database for a music collection. Logically, each node of the AVL tree will store a record containing information about a particular recording artist:  artist …

Member Avatar for NathanOliver
0
115
Member Avatar for umesh_1

did any of you guys help me out to know c programming easily.i feel it hard . so please help me out,,

Member Avatar for shayan_doust
0
164
Member Avatar for markdean1989

*** Systems *** OS: Windows 8.1 64bit IDK: MS Visual Studio Express 2013 for Windows Desktop Problem: I created a simple (very simple) User-defined function named func_compare that compares two numbers, it has two parameters of type Integer. It has no errors whatsoever until you compile it, and it says …

Member Avatar for markdean1989
0
322
Member Avatar for Nghia_1

Hi, this is my first post here. The fact is i'm not a programmer and i need help. I have a software that i need to solve a vehicle routing problem for my thesis. But i dont have anything on hand . Can u share me some source code or …

Member Avatar for rubberman
0
154
Member Avatar for twtw

i got it success but error and i cant find it my code here: bool BinarySearchTree::search(int d) { tree_node *t = head; if(root==NULL) cout<<" The Tree is empty. Please insert a value "<<endl; while (t != NULL) { if (t->data == d) break; else if (d > t->data) t = …

Member Avatar for Taywin
0
167
Member Avatar for sahil_gupta

I know c++ basics only, how to start doing software development and game development in c++....????

Member Avatar for sneekula
0
156
Member Avatar for rafiakhan492
Member Avatar for avishekh.bharati

I am familiar with java. but now i want to learn either of these. so which would be better to learn??

Member Avatar for vegaseat
0
187
Member Avatar for it@61@sec

How can I find the width of a command line window from a GNU C++-program ? I'll use this information to display a progress bar when copying files, so I need to know the width to be able to display the progress bar correctly.

Member Avatar for L7Sqr
0
513
Member Avatar for Transcendent

What IDE do you use for C++ development and what is the best in your opinion? I'm using eclipse but sometimes I get errors when there shouldn't be errors. For example: I would have errors on eclipse but when i use code::block, everything works fine. I'm thinking of switching to …

Member Avatar for rubberman
0
240
Member Avatar for suliman.kh

hi guys Iwant a programm to creat tree and calculate the sum ant count it and max and min

Member Avatar for Ali_45
0
78
Member Avatar for tinased

hello. I have to use a function in my phonebook program to sort the names alphabitcally here is what i have done so far.but what's wrong with it? void showAllContacts() { char t[40]; list *head; if(head == NULL) { puts("There are no contacts to display!"); } else { printf("\nAll contacts:\n"); …

Member Avatar for Duoas
0
739
Member Avatar for nitin1

Please tell me the difference between these three. I know the basic meaning but don't know exact meaning of all of them. Please explain a very good example if possible. Thanks in advance.

Member Avatar for rubberman
0
252
Member Avatar for Mubeshier

This programe is made for biggners in c++ to made programe efficently and hide your prevate data form the user of your programe.This programe is made with the use of this pointer and also use the operator overloading. I will share this programme with others to understand it. //this programme …

Member Avatar for rubberman
0
288

The End.