Search Results

Showing results 1 to 3 of 3
Search took 0.00 seconds.
Search: Posts Made By: infamous ; Forum: C and child forums
Forum: C Apr 11th, 2004
Replies: 7
Views: 8,085
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 23rd, 2004
Replies: 10
Views: 7,079
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: 2
Views: 3,456
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...
Showing results 1 to 3 of 3

 


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

©2003 - 2009 DaniWeb® LLC