Search Results

Showing results 1 to 14 of 14
Search took 0.01 seconds.
Search: Posts Made By: infamous
Forum: C++ May 12th, 2004
Replies: 2
Views: 2,642
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
Forum: C++ Apr 22nd, 2004
Replies: 5
Views: 3,590
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
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
Posted By infamous
linux: system("clear");
Showing results 1 to 14 of 14

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC