General C++ Programming - March 2012 (Page 41)

Anyone here gud in designin Flowcharts? (Code in Dev C++)
 
the code shall be givin on request
[no replies]
Can someone help me correct this code?
 
#include <stdio.h> #include <string.h> main() { void enterdata(int y ); int y; int i=0; int choice; void searchdata(int ...
[4 replies] Last: thnx for the assistance :D anyone here gud at designing flowcharts? (by andre9999)
Fliping This
 
So I Wrote Down This Code But Don't Know How To Make It To Where The Asterisks Are Descending Instead Of Ascending. Any Help Would Be Appreciated #include<i...
[4 replies] Last: Thank you (by Memo Gonzalez)
How to make a threaded tree??
 
I want to make my AVL tree threaded, so I can implement iterators. I've looked everywhere for how to implement threading, but all I find is examples of how to d...
[7 replies] Last: I got stuck trying to implement a previous node pointer before. http:... (by netsuki)
String To group of characters
 
Hello, I have to write a program in which a string is converted into a group of characters which are then assigned an integer. So if the user enters the string ...
[3 replies] Last: on second thoughts there is no need for a second array. something like... (by buffbill)
...
 
!!! Finally Got It
[1 reply] : Have you even attempted the problem yet? The solution is so incredibly... (by packetpirate)
Finally
 
Got It!!! Thanks
[1 reply] : What have you done to solve the problem so far? What makes you think w... (by packetpirate)
making a pokemon game (1,2,3)
 
i have a class for pokemon, player, and attacks. this is my player data structure class player { public: Pokemon Pokemon ; //array to hold 6 pokemo...
[41 replies] Last: oh i see so basically just a class that interacts with a .txt file to ... (by GFreak45)
just installed Boost via MacPorts...
 
...on a Mac, obviously. The messages said it installed successfully, but it didn't tell me where it put the files. I can't find them by looking around. Anyone k...
[2 replies] Last: Thanks...that helped. In my case, they went into /usr/local/Cellar/boo... (by mzimmers)
Dynamic Array
 
how to write a c++ program for a multi-dimensional dynamic array and get sum of its elements?
[7 replies] Last: http://www.cplusplus.com/forum/beginner/63/ anyway, at least you have... (by Zephilinox)
by cap63
using cstring in c++ program isnt running whats wrong?
 
#include <iostream> #include <cstring> using namespace std; void DisplayAllUpper(char& Days); void DisplayFirstUpper(char& Days); void DisplayDaysLengt...
[3 replies] Last: strupr isn't ANSI or POSIX; if you use non-standard functions, it's up... (by Moschops)
by cbrew
Binary Search Tree
 
I am making a binary search tree to print the elements of a tree. everything seems to be fine except when i run the program with inorder i get "7, -1, " with an...
[4 replies] Last: Thanks, that just fixed everything (by cbrew)
Help implementing either threading or a parent pointer in an AVL tree
 
I need to write iterators for my AVL tree, but I first need either threading or a parent pointer to get it working. I can't seem any examples of how to implemen...
[no replies]
Matching Grouping symbols logic fail on my part need help.
 
Fixed my Own Code.
[2 replies] Last: ~Brain Fart~ (by Subzero030201)
AllegroHelp
 
Can anybody please tell me what does blit function do in allegro and what exactly is bitmap?
[2 replies] Last: blit is part of the outdated Allegro API. Use Allegro5.0 unless you ne... (by hanst99)
by JnrGD
Wrapping a C++ class
 
I know this isn't a C++/CLI forum but having made posts on codegurus C++/CLI forum and receiving no replies I thought I'd try here. I have a C++ class that I ne...
[8 replies] Last: Have you tried including a reference to the CLR library and using it t... (by clanmjc)
by mar11
Adding member to an object
 
Hi all, in old standard C++ I know that is no way to add a member to an object dynamically? Is there any to do it in the new standard C++11? That is when ...
[6 replies] Last: > You may be able to use the Prototype Design Pattern for what you are... (by JLBorges)
string array.
 
AOA, I was just trying to get easy with structure,i came across this problem. Can we have an array of string? like string names ; Although there ...
[5 replies] Last: Never use strcpy with strings. strcpy is for use with char arrays. S... (by Disch)
by cheryl
how to getline 2 times?
 
#include<iostream> using namespace std; float calcGross(int); float totDeduct(float); void main() { char nextEmployee = 'Y'; char employeeID ; ...
[4 replies] Last: There are two kinds of input possible with C++ streams - formatted inp... (by JLBorges)
Random number help
 
I am trying to have it generate a random number between 1-100. but it shows 51 every time. is there any reason for this? I included <cstdlib> at the top. ...
[8 replies] Last: why? what's insecure about rand? Don't make your code nonstandard ... (by Disch)
March 2012 Pages: 1... 3940414243... 49
  Archived months: [feb2012] [apr2012]

This is an archived page. To post a new message, go to the current page.