Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 24 of 24
Search took 0.01 seconds.
Search: Posts Made By: darthsabbath
Forum: C Sep 13th, 2006, 7:48 PM
Replies: 2
Views: 148
Posted By darthsabbath
Awesome, thanks for clarifying DaWei.

Awesome, thanks for clarifying DaWei.
Forum: C Sep 13th, 2006, 7:01 PM
Replies: 2
Views: 148
Posted By darthsabbath
Compiletime addressing?

From reading about C, I've discovered something that's confusing the heck out of me. The book I'm reading states that addresses are allocated to variables by the compiler, so they're known at...
Forum: C Jul 6th, 2006, 12:52 PM
Replies: 5
Views: 201
Posted By darthsabbath
Okay, dumbness on my part... I had originally...

Okay, dumbness on my part... I had originally included ctype.h, then went back and removed it for some reason. It's back in place and working fine now. So, purely user error. Thanks for pointing...
Forum: C Jul 6th, 2006, 3:53 AM
Replies: 5
Views: 201
Posted By darthsabbath
GCC - Warning: implicit declaration of function

Hi all,

Just a question about a gcc warning I've received on a few different programs when compiling with the -Wall option...

warning: implicit declaration of function ‘whateverfunction()’

For...
Forum: Coder's Corner Lounge Jun 23rd, 2006, 6:53 PM
Replies: 1
Views: 83
Posted By darthsabbath
Safari Bookshelf

Hi,

Has anyone made use of O'Reilly's Safari Bookshelf? For those that aren't aware of what it is, it's a subscription service that gives you access to the libraries from several major book...
Forum: Coder's Corner Lounge Jun 16th, 2006, 2:54 PM
Replies: 7
Views: 168
Posted By darthsabbath
I like this one. :D Seems very true from...

I like this one. :D Seems very true from searching around the web and these "Learn $BUZZWORD in 10 Minutes" books that seem to come out everytime something new catches on.

Phil
Forum: Coder's Corner Lounge Jun 16th, 2006, 1:44 PM
Replies: 7
Views: 168
Posted By darthsabbath
General or Specific Knowledge?

As a newbie programmer, I'm just trying to make some sense of the wealth of information out there, and I'd like to get some opinions on what is more valuable in the IT sector. Is it better to be a...
Forum: C Jun 2nd, 2006, 6:55 PM
Replies: 5
Views: 283
Posted By darthsabbath
Sorry, I was actually trying to solve both 3. and...

Sorry, I was actually trying to solve both 3. and 4. Shows what I get for trying to do this on break. :-) I should have been more clear.

At any rate, I added an additional test to the second if...
Forum: C Jun 2nd, 2006, 3:43 PM
Replies: 5
Views: 283
Posted By darthsabbath
So, using the ctype.h header and the isspace()...

So, using the ctype.h header and the isspace() function, would this be what you're getting at? (Sorry, I'm not at a computer with a compiler, so I can't test this)


while ((c = getchar()) != EOF) {...
Forum: C Jun 2nd, 2006, 3:35 AM
Replies: 5
Views: 283
Posted By darthsabbath
Code Critique

Hi, all. I don't so much have a problem. My code works (or at least, it does in all tests I've ran so far), but as I'm still working on some of the examples in K&R, I'm just looking for some...
Forum: C May 24th, 2006, 1:49 AM
Replies: 11
Views: 327
Posted By darthsabbath
Just a question here... the code I was testing...

Just a question here... the code I was testing was from K&R, testing to see if the current character being pointed to is the string terminating character. In this instance, would one still use...
Forum: C May 23rd, 2006, 3:22 AM
Replies: 11
Views: 327
Posted By darthsabbath
~! Awesome! I think I've got it now. :-) Thanks...

~!

Awesome! I think I've got it now. :-) Thanks for the tip.

Damnit... it took forever for me to get OOP... I'm not going to give up on pointers either. :D

Phil
Forum: C May 23rd, 2006, 2:54 AM
Replies: 11
Views: 327
Posted By darthsabbath
Passing Pointers to Functions

I'm playing around with the classic K&R, and am in the chapter on Pointers. I'm having a bit of a problem with the strcopy() function listed... it keeps segfaulting whenever i compile and run the...
Forum: Book Reviews May 22nd, 2006, 2:06 AM
Replies: 0
Views: 531
Posted By darthsabbath
Write Great Code Vol 1: Understanding the Machine

Wow... I don't visit here enough, but I think this is a sorely underused section (granted, it IS fairly new).

The book I'm reviewing, written by Randall Hyde, is one of the first books that allowed...
Forum: Assembly Apr 5th, 2006, 7:55 PM
Replies: 2
Views: 279
Posted By darthsabbath
The Debug Utility

Hi, all, I have a question regarding a procedure that we do at the OEM I work for. It is recommended that, before formatting and installing Windows, we enter the following using the old DOS debug...
Forum: Coder's Corner Lounge Mar 15th, 2006, 1:36 AM
Replies: 13
Views: 357
Posted By darthsabbath
Okay, sounds like I'm at least not being slow on...

Okay, sounds like I'm at least not being slow on the uptake here. Maybe I just need to spend some more time learning and move away from the "Learn to Program in $LANGUAGE" books and pick up some...
Forum: Coder's Corner Lounge Mar 14th, 2006, 11:48 PM
Replies: 13
Views: 357
Posted By darthsabbath
Code without comments

Hey all,

So I've been at this programming thing for several months now, put together a few programs of my own, branched out into other languages and topics such as data structures and algorithms,...
Forum: Coder's Corner Lounge Feb 6th, 2006, 6:57 PM
Replies: 3
Views: 145
Posted By darthsabbath
An Exceptional Question

Hi, all, I've been hacking around for a few months with Python, a little PHP, and a few others, and I think I'm starting to get the hang of this programming thing. There are a few things, however,...
Forum: Python Jan 12th, 2006, 4:46 PM
Replies: 6
Views: 267
Posted By darthsabbath
Swank! Shows I definitely need to start thinking...

Swank!

Shows I definitely need to start thinking things through a little better. ;-)
Forum: Python Jan 12th, 2006, 1:10 PM
Replies: 6
Views: 267
Posted By darthsabbath
Awesome, thanks guys, I appreciate it! Phil

Awesome, thanks guys, I appreciate it!

Phil
Forum: Python Jan 12th, 2006, 12:12 AM
Replies: 6
Views: 267
Posted By darthsabbath
Searching for a file with Python

Hi, all, I'm trying to work on a file search implemented in Python... basically located an arbitrary file. Trying to figure out exactly what I'm doing wrong... it's a recursive method, but I can't...
Forum: Coder's Corner Lounge Dec 26th, 2005, 5:19 PM
Replies: 3
Views: 172
Posted By darthsabbath
Has anyone read SAM'S "Teach Yourself Data...

Has anyone read SAM'S "Teach Yourself Data Structures & Algorithms in 24 Hours?"

Yeah, yeah, I know SAM'S has a kind of hit and miss (perhaps more misses than hits?) reputation, but many of the...
Forum: Coder's Corner Lounge Dec 26th, 2005, 2:53 PM
Replies: 3
Views: 172
Posted By darthsabbath
[QUOTE=Mad_guy]Any book by Donald Knuth for...

[QUOTE=Mad_guy]Any book by Donald Knuth for one.QUOTE]

Really? The only ones I'm somewhat familiar with are his "Art of Computer Programming" series, and have always been told they were more for...
Forum: Coder's Corner Lounge Dec 26th, 2005, 12:47 PM
Replies: 3
Views: 172
Posted By darthsabbath
Books on algorithms/programming theory

Hi, all, I just arrived here, and have a question. It's fairly general, and non-language specific, so I hoped this forum is a good place to ask.

I'm looking for a good book on algorithms. I have...
Showing results 1 to 24 of 24

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 5:29 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC