My account: Login | Sign Up
Loading... 

C++ | Forum profile

Forum profile page for C++ on http://www.daniweb.com. This report page is the aggregated overview from a single forum: C++, located on the Message Board at http://www.daniweb.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "C++" on the Message Board at http://www.daniweb.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: www.daniweb.com - IT Tech Talk - C++ (site profile, domain info daniweb.com)
Title: C++
Url: http://www.daniweb.com/forums/forum8.html
Users activity: 36 posts per thread
Forum activity: 268 active threads during last week
 

Posting activity on C++:

  Week Month 3 Months
Threads: 268 918 2,318
Post: 1,005 3,566 8,276
 

C++ Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name Posts
Ancient Dragon 57
stilllearning 50
Salem 36
ArkM 36
Sci@phy 30
Sky Diploma 26
VernonDozier 25
Narue 24
Freaky_Chris 22
chococrack 21
 

Latest active threads on C++::

www.daniweb.com - IT Tech Talk
Started 1 day, 20 hours ago (2008-10-10 06:40:19)  by wqzerboom
The requirements are actually simple, just asking to sort a few, say 10, 20 or so, intergers in ascending order. However, array and pointers are not allowed to be used, and just the fundamental knowledge about flow control are permitted. The hints are as follows: 1. Initialize a variable F that keeps a very large number (larger than any number in the to-be -sorted batch) 2. Search ...
Thread:  Show this thread (9 posts) Size: 848 bytes
Customize:  Customize "Question about a simple sorting method without arrays :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 16 hours ago (2008-10-10 10:28:25)  by dmanw100
I am trying to use sprites, which I made in the form of bitmaps, in my program. Is there a library that will allow me to easily display them? I tried to use OpenGL but my computer will not allow it to initialize. I would simply like to display bitmaps and possibly use a mask for invisible pixels. Thanks!
Thread:  Show this thread (1 post) Size: 429 bytes
Customize:  Customize "Displaying Sprites :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 2 days, 1 hour ago (2008-10-10 01:40:31)  by Rhohitman
I create the simple template structure like this Help with Code Tags ( Toggle Plain Text ) #include <iostream> template <class info> struct box { info data; }; int main() { box<int> b1; b1.data = 1; std::cout<<b1.data; return 0;typedef box square; } #include <iostream> template <class info> struct box { info data; }; int main() { ...
Thread:  Show this thread (5 posts) Size: 2,204 bytes
Customize:  Customize "How to use typedef for the template structure? What its syntax? :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 days, 18 hours ago (2008-10-08 08:21:59)  by gregorynoob
okay, this is the problem (variation of the knapsack coins problem): you've got 4 coin types: 1 cent, 2 cents, 5 cents and a quarter...infinite amount of each. I'm supposed to find the number of ways in which the coins can be arranged to form the sum of some integer n... well i... had an idea but it proved pretty wrong. my idea was to check all the possible ways of forming n with two ...
Thread:  Show this thread (14 posts) Size: 984 bytes
Customize:  Customize "number of ways to..ehh, i hate counting ways :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 17 hours ago (2008-10-10 09:58:49)  by zarf
Hi all i am a newbie in C++, i am currently doing my FYP and i need some help on it. I am using visual C++ version 6.0. Firstly, i have 2 machines A ( the client ) and B ( the server ), A is supposed to send a signal to B. The problem is i want to combine or link 2 programs, which is a TCP Winsock Server and a record program together in B. The record program has a code which says ...
Thread:  Show this thread (1 post) Size: 6,578 bytes
Customize:  Customize "Help on TCP Winsock :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 2 days, 3 hours ago (2008-10-09 23:40:55)  by ShadowOfBlood
I had to write a program that asks the user to guess a number. The program then tells if their guess is too high or too low depending on the difference between their guess and the random number. I finished the program and it works, but my teacher's very picky about efficiency. The chapter is about controlled structures. Can someone look at this and tell me if there's a better way to ...
Thread:  Show this thread (5 posts) Size: 12 kb
Customize:  Customize "Efficient enough? :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 2 days, 23 hours ago (2008-10-09 03:40:27)  by avillachandok
firstly hi all, i''d like to intrroduce myself. Im a new C++ programmer..hardly..but trying..so yes its frustrating with the error and syntax mainly. Anywayz, this is a card game with 2 classes and simple functions but im having a problem compiling it. I compile it on visual studio so i hope you use the same one.so this is my problem: not sure with the deal() and the showdeck() method ...
Thread:  Show this thread (5 posts) Size: 15 kb
Customize:  Customize "card game: just need to know why its not compiling... :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 18 hours ago (2008-10-10 08:41:30)  by adrian116
1. const int* a; (what the difference between const int *a and why pointer need to be const?) 2. short b[10]; (is the content of b are all short type?) 3. float* const c[]; (i think this should be wrong due to the size of array c is not assigned) 4. unsigned int (*d)(const float*); (i totally don't have any idea.....) 5. int **e; (is e the pointer of pointer?) thank you...
Thread:  Show this thread (4 posts) Size: 551 bytes
Customize:  Customize "what are the meaning of those declarations? :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 18 hours ago (2008-10-10 08:41:24)  by biggz
i started using c++ a few weeks ago , and i was told to build a program the finds the factorial of a number ... Help with Code Tags ( Toggle Plain Text ) #include <iostream> using namespace std; void main() { int x,fact; cout<<"Enter the number wanted"; cin>>x; for (fact=1; fact<=x ; fact++); { fact = fact * x; cout<<"The ...
Thread:  Show this thread (3 posts) Size: 1,588 bytes
Customize:  Customize "program for getting factorial using for :: C++ :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 19 hours ago (2008-10-10 07:41:19)  by gopi17
hello....i'm juz wondering is there any that generates UML diagrams such as sequence diagram,activity diagram n more once i enter my source code??...help me pls most of the software i use only generates class diagrams... could anyone tell me which is can help me......
Thread:  Show this thread (2 posts) Size: 427 bytes
Customize:  Customize "UML Solving...help pls :: C++ :: www.daniweb.com - IT Tech Talk"
 

Hot threads for last week on C++::

C++
Started 1 week, 3 days ago (2008-10-01 09:34:35)  by jeevsmyd
hii friends..Am new to this community... am a computer science student... I need your help in creating a small c++ game... Its a project for me... I am told to do it in turbo c++... okay... the game is so simple... A number memory game... random numbers should be displayed and the user/gameplayer must type in that number very quickly..there must be a time limit for that... the game...
Thread:  Show this thread (63 posts) Size: 6,569 bytes
Customize:  Customize "Hiii am an amateur programmer.. Want a MEMORY GAME :: C++ :: www.daniweb.com - IT Tech Talk"
C++
address book - 27 new posts
Started 1 week, 1 day ago (2008-10-03 04:51:35)  by unk45
im supposed to create an address book and so far have gone as far as getting the input..my problem now is the highlighted section..i have to return bak the info put in initially by the user (first, last name and address), based upon a question to the user to input either the last name or the first and last name of the persons he wants to pull up. would appreciate some help thnx...
Thread:  Show this thread (27 posts) Size: 3,208 bytes
Customize:  Customize "address book :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 1 week, 1 day ago (2008-10-03 12:52:10)  by alleycot
write a program to create a customer's bill for Ms.B's Desk-Shop. ms. B sell only three items: grater-cake, icy-mints and corn-sham, which she persoally delivers to ezch customer upon accepting their phone order. The unit prices are $50, $10 and $30 respectively, with delivery charge of 10% on the total cost of the items purchased. The program should be designed according to the input and ...
Thread:  Show this thread (26 posts) Size: 1,698 bytes
Customize:  Customize "C Program solution needed... :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 3 days, 9 hours ago (2008-10-08 17:25:32)  by mjf5012
Anyone know how to accomplish this task on visual studio with C++? Write a program that reads a series of numbers (doubles) from the user, then prints the mean and the range. Notes: • You do not know ahead of time how many numbers will be in the list. • When you want to stop entering numbers, enter control‐Z. • The range is the difference between the lowest and the highest ...
Thread:  Show this thread (23 posts) Size: 676 bytes
Customize:  Customize "Help Would Be Appreciated :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 6 days, 13 hours ago (2008-10-05 13:59:33)  by Talli
can someone make a simple program that prints numbers in series depending on the persons input .. for eg :- if input is 5 then output should be : 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 ....please help asap .. thank you in advance ...
Thread:  Show this thread (19 posts) Size: 499 bytes
Customize:  Customize "c++ program.. plz helppp .. :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 5 days, 6 hours ago (2008-10-06 21:10:33)  by n8thatsme
Ok, so I have an array of objects that have 3 get functions. Get last name, get first name (both strings) and get salary. What I'm trying to do is get a user to enter First name and Last name and it search the array for the persons first and last name. When it finds it I want it to display all of the info, the First name, last name and the salary. I was going to use a sequential search but ...
Thread:  Show this thread (19 posts) Size: 720 bytes
Customize:  Customize "Search an array of objects. :: C++ :: www.daniweb.com - IT Tech Talk"
C++
C++. - 18 new posts
Started 6 days, 16 hours ago (2008-10-05 11:01:03)  by tatainti55
Why do i get this error every time i try to compile an SDL source code? D:\gcc installation problem, cannot exec `cc1': No such file or directory. That's the ONLY error i get.
Thread:  Show this thread (18 posts) Size: 334 bytes
Customize:  Customize "C++. :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Is it possible - 17 new posts
Started 4 days, 7 hours ago (2008-10-07 20:13:00)  by Ellisande
To pass an ifstream type as an argument for a function? Help with Code Tags ( Toggle Plain Text ) bool initGame(Game &game, int argc, char *argv[]){ ifstream board(argv[1]); // <------------------- This part ifstream deck(argv[2]); int numPlayers= atoi(argv[3]); int numRounds= atoi(argv[4]); if (board.fail() || deck.fail() || numPlayers==0 || MAXPLAYERS < ...
Thread:  Show this thread (17 posts) Size: 3,301 bytes
Customize:  Customize "Is it possible :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 6 days, 10 hours ago (2008-10-05 16:59:02)  by Sci@phy
http://www.cplusplus.com/doc/tutorial/pointers.htm l Check out Dereference operator (*)
Thread:  Show this thread (15 posts) Size: 334 bytes
Customize:  Customize "Re: print what a pointer points to in an arry :: C++ :: www.daniweb.com - IT Tech Talk"
C++
Started 3 days, 18 hours ago (2008-10-08 08:21:59)  by gregorynoob
okay, this is the problem (variation of the knapsack coins problem): you've got 4 coin types: 1 cent, 2 cents, 5 cents and a quarter...infinite amount of each. I'm supposed to find the number of ways in which the coins can be arranged to form the sum of some integer n... well i... had an idea but it proved pretty wrong. my idea was to check all the possible ways of forming n with two ...
Thread:  Show this thread (14 posts) Size: 984 bytes
Customize:  Customize "number of ways to..ehh, i hate counting ways :: C++ :: www.daniweb.com - IT Tech Talk"

This page was found by:   c++ BIRTHDAY PROFILE  *** glibc detected *** ./a.out: free()