
please wait
by nyaeggy
menu driven program
|
I need a menu driven program that has the following 5 choices. Output a sum of even numbers Output a table of odd numbers Output their square root Output al... |
Nov 18, 2011 at 5:38pm
[3 replies] Last: Sorry, nyaeggy. The include stdafx.h, is used with Visual C++ 2008 Ex... (by whitenite1)
|
by Kelevra
Virtual Devices for emu8086
|
Hi there, I am trying to develop a virtual device for emu 8086. They have a header file for that purpose: /* this header file can be used to implement y... |
Nov 18, 2011 at 4:26pm
[no replies]
|
by GuyWithAHat
How do you clear screens?
|
I would like to clear a screen without using the System("CLS") code. Ive heard that people can replace the "CLS" command with something malicious. Also,t... |
Nov 18, 2011 at 4:23pm
[2 replies] Last: Ive heard that people can replace the "CLS" command with something ma... (by Moschops)
|
by sito72
trouble with the very basics of ANSI C
|
Hi All,at the beginning I would like to say that I am completely new to programming I'm having a lot of trouble with the very basics of ANSI C , I need to do i... |
Nov 18, 2011 at 2:46pm
[1 reply] : Post the code you have done and ask specific questions about it. You ... (by closed account 1vRz3TCk)
|
by moot1
ceasers cipher (1,2)
|
this is my code so far i want to make it encrypt the cod by move the letters 2 spots to the left on the alphabet how do i do this.i want to make it simple. #... |
Nov 18, 2011 at 2:45pm
[25 replies] Last: Never mind I get it So I guess it's a "moot" point! 8^D Yes, criti... (by cnoeval)
|
by georgina
Simpson rule problem
|
I have to develop a program to implement the Simpson rule. I have been working on it all night and I can't get it right. Below is my most recent attempt. #in... |
Nov 18, 2011 at 2:31pm
[1 reply] : for(int k=2; k<(n-1); k+2) { double y = a+h*(k); s=s+2.0*function(y);... (by Breadman)
|
by vgaur25
switch
|
can we declare a variable inside switch block and if we then how |
Nov 18, 2011 at 2:28pm
[3 replies] Last: Then you would have to declare the variable prior to entering the swit... (by closed account 1vRz3TCk)
|
by Ramzi89
Returning from function
|
I am trying to return from a function when it figures out there is nothing in a list. What is the best way to do this?? Here is my function string Circlist... |
Nov 18, 2011 at 2:14pm
[6 replies] Last: i see i see. Thanks. (by Ramzi89)
|
by phoenix14
arrays and functions
|
Hello, this is my first time posting a question on this website. I have read the tutorial on arrays and functions , but I am still having a problem with writing... |
Nov 18, 2011 at 1:54pm
[no replies]
|
by archiedogue
Issue with linked list and file IO
|
Hi, I'm having a lot of trouble understanding the very basics of a linked list in c++. Can't find a lot of examples about saving file parameters in a linked lis... |
Nov 18, 2011 at 10:50am
[1 reply] : Hi, I'm having a lot of trouble understanding the very basics of a li... (by codekiddy)
|
by Tampopo
Help with network game - socket programming /w c++
|
I managed to find this 2 files from this web: http://www.linuxhowtos.org/C_C++/socket.htm I need to create a network game using socket programming. For exa... |
Nov 18, 2011 at 9:42am
[1 reply] : needed some divine guidance... (by Tampopo)
|
by award982
Date input
|
Hey all :) If i have to input a date, lets say 11/12/08 into separate int's, how do i do that? Please help :o I tried to get separate 2 char arrays putting a ... |
Nov 18, 2011 at 8:35am
[3 replies] Last: ifstream in("input.txt"); int d ; char s; for(int i... (by award982)
|
by basedmod
Help with swap/pointers
|
...close |
Nov 18, 2011 at 8:17am
[4 replies] Last: bump, any other input? (by basedmod)
|
by hentaiw
Reverse Linked List...
|
I wrote this for the to reverse a linked list,to have the parameter point to the end of the list and rearrange all the nodes without creating or deleting any no... |
Nov 18, 2011 at 7:51am
[3 replies] Last: hi hentaiw, I've found my old liked list in my Recycle Bin, you may fi... (by codekiddy)
|
by velcro
How to create an array with string of characters?
|
Our assignment is to create an array that will hold strings. The problem is that we haven’t gotten to the Strings chapter yet. (We’re on one-dimensional arr... |
Nov 18, 2011 at 7:37am
[2 replies] Last: @computerkazi Thanks for your help. Your code works perfectly. It'll ... (by velcro)
|
by realfuzzhead
help figuring out if I wrote a good program
|
Ok, so i discovered c++ 4 days ago. IT took me a day to get the compiler, then that night I did the "hello world program", then I made a very simple code that f... |
Nov 18, 2011 at 6:54am
[12 replies] Last: ok so i compiled a huge page of different problems testing every diffe... (by realfuzzhead)
|
by riptyde
Problem with password code! Help!
|
Hey I've been writing this bs program to reteach myself C++ and I can't seem to figure out how to assign an initial, changeable value to a private variable. I ... |
Nov 18, 2011 at 6:44am
[11 replies] Last: Is there a benefit to doing this besides making the program more orga... (by Alrededor)
|
by nomdaweb
Need help combining 2 lists into 1 new list. Almost there
|
I am trying to combine list1 and list2 into newlist but am having a few errors. After these 2 lists combine, their values will be zero LinkedList catLis... |
Nov 18, 2011 at 4:54am
[1 reply] : try creating list 3 based on the total size of list 1 and 2. then inse... (by computerkazi)
|
by kbpud8
Assignment Help
|
Hey all, completely new to all of this and really needed some help on my one assignment. Assignment: Write a program that asks for a loan amount, the number ... |
Nov 18, 2011 at 4:51am
[14 replies] Last: here you go... #include <iostream> using namespace std; main(){ ... (by computerkazi)
|
by Tampopo
How to add a sum of the total amount of pay in an array?
|
Say, I have my calculateSalary() and it is able to print out each and every staff they have in the array. How can i implement a function to add all of the staff... |
Nov 18, 2011 at 4:21am
[7 replies] Last: I solved it already. I just need to code this in my main.cpp int tota... (by Tampopo)
|