Forum: C++ Feb 3rd, 2005 |
| Replies: 3 Views: 1,551 |
Forum: C++ Feb 3rd, 2005 |
| Replies: 30 Views: 5,677 Re: Old School Compiler vs New Compiler Well looking at your solution, the user can enter even a negative. Says the input must be more than 10 so... as a suggestion (for the getsalary())
int getsalary()
{
int usersalary=0;
... |
Forum: C++ Feb 2nd, 2005 |
| Replies: 5 Views: 2,300 |
Forum: C++ Jan 28th, 2005 |
| Replies: 9 Views: 6,008 Re: compile header file Oh and to answer the question of multiple compilations... it only defines the file name if it wasnt defined. |
Forum: C++ Jan 28th, 2005 |
| Replies: 9 Views: 6,008 Re: compile header file Header files aren't compiled but when the compiler sees
#include "filehere.h" ,
it looks for the file for that name in the directories specified. Then it looks through the header during runtime for... |
Forum: C Jan 22nd, 2005 |
| Replies: 8 Views: 10,258 |
Forum: C Jan 22nd, 2005 |
| Replies: 8 Views: 10,258 |
Forum: C++ Jan 16th, 2005 |
| Replies: 21 Views: 5,132 Re: C++ pointers problem All i see in your code that could give a syntax error is the lack of a semicolon after the function call order_chars. |
Forum: C++ Nov 4th, 2004 |
| Replies: 3 Views: 1,789 |
Forum: C++ Sep 29th, 2004 |
| Replies: 2 Views: 3,655 Need help setting up graphics Hello, my name is Jonathan and I am a beginner programmer in my first year of studies. I am using a Turbo C++ editor and I'm trying to set up graphics. The problem is I'm not sure how. Here's how i... |