Forum: C++ May 12th, 2004 |
| Replies: 2 Views: 2,642 read in the toll file, read in the customer file. store the customer's data into a structure. if the customers balance is > 0 then print out the data. what is it that u dont know how to do? we... |
Forum: Java May 10th, 2004 |
| Replies: 2 Views: 2,774 if u check on java.sun.com they have a tutorial for nearly everything could imagine. |
Forum: C++ Apr 29th, 2004 |
| Replies: 16 Views: 10,932 i never made fun of you, i simply suggested doing a little searching. you come on and basically post your homework assignment and think that people are going to just hand u code, LMAO. and uhh,... |
Forum: C++ Apr 28th, 2004 |
| Replies: 5 Views: 9,830 it is faster to type but there's no difference in the code generated, test it and see for yourself. |
Forum: C++ Apr 28th, 2004 |
| Replies: 16 Views: 10,932 what do u think we're gonna write it for u? im not going to google, it isnt my assignment. u need to LOOK harder. everyone gets this assignment in their OS class, i'm sure a solution is out there. ... |
Forum: C++ Apr 27th, 2004 |
| Replies: 16 Views: 10,932 |
Forum: C++ Apr 22nd, 2004 |
| Replies: 5 Views: 3,590 your add_item method should traverse to the END of the list, and add the element there. the remove_item method should remove the first element in the list. |
Forum: C Apr 11th, 2004 |
| Replies: 7 Views: 8,046 i was trying to learn about firmware a couple weeks ago b/c i wantd to hack my router. i found that most firmware is just plain ol C.. |
Forum: C++ Mar 30th, 2004 |
| Replies: 8 Views: 29,654 uhhh.. u obviously didnt write that code. massPounds is a variable, this is where u store the user's input. cin gets input from the user, and stores it in the massPounds variable. so, u wouldnt want... |
Forum: C Mar 23rd, 2004 |
| Replies: 10 Views: 7,015 1) b/c C is a minimal, spartan like language
2) shift each bit out and test it:
unsigned int num = 0xdeadbeef;
for(int x = 0; x < (sizeof(int) * 8); x++)
if(num & (1 << x) ) printf("bit... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 8 Views: 5,721 visual studio usually ships 'neutered', meaning you can't build standalone apps to distribute. depending on what version u have, this is may or may not be true. usually the expensive, ie.... |
Forum: C Mar 23rd, 2004 |
| Replies: 2 Views: 3,421 yes it is very solvable. unresolved references mean that you either, dont have the correct libs, or those libs are not being included properly by the compiler. u need to first figure out where that... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 1 Views: 2,635 try using the 'chdir' command to change directories. the problem with using system("cd"), is that the 'cd' command only affects the current process executing it. after that process terminates, the... |
Forum: C++ Mar 23rd, 2004 |
| Replies: 12 Views: 5,984 |