dreamlax

3,963
Reputation
566 views

Registered User

Name dreamlax
Member for 1 year
Seen 39 mins ago
Website
Location Sydney
Age 24
Nov
24
comment Memory leak on return object
You don't need to allocate and initialise every variable. When you do that, each assignment to that variable will overwrite your freshly allocated object.
Nov
24
comment Memory leak on return object
options still leaks if [fileArray count] > 0.
Nov
24
answered Can doubles be used to represent a 64 bit number without loss of precision
Nov
24
comment C - Serialization of the floating point numbers (floats, doubles)
It may require more space, but it's both human readable and machine readable, endian-agnostic, and theoretically limitless with regards to the precision required.
Nov
22
comment What is a programming language?
It's not a descriptive definition. The language itself doesn't control the computer.
Nov
22
comment How to get MAC address of your machine using a C program?
It's not very portable at all. It gives nothing on Mac OS X. The output of ifconfig does not contain the text HWaddr.
Nov
20
comment state machines tutorials
Your main doesn't return a value . . . should it?
Nov
20
comment Looking for concept for managing game level views, level selection views, preferences view, storing levels, environment variables.
Wow, what's with all the emphasis everywhere?
Nov
20
comment Playing audio file using C
Yes, there are header files to be included to play audio files using C language. Did you want to know which ones?
Nov
17
answered Check whether function is declared with C preprocessor?
Nov
17
comment Waiting until a file is available for reading with Win32
Unfortunately I have no clue about how the file is generated or the process that is putting it in the watched folder (it could be any program, or it could be the user dragging and dropping a file, etc).
Nov
17
accepted MagickCore writing image data to stdout rather than to a filename
Nov
17
revised Waiting until a file is available for reading with Win32
edited tags
Nov
17
comment Waiting until a file is available for reading with Win32
Win32 == C API, I'll retag.
Nov
17
answered MagickCore writing image data to stdout rather than to a filename
Nov
17
asked Waiting until a file is available for reading with Win32
Nov
15
comment How do I set the font and color for a group box caption using Win32 and C++
Win32 is a C API.
Nov
12
answered how to declare color for Label
Nov
12
awarded  Nice Answer
Nov
12
answered C Interview questions
Nov
11
comment Parse out the file extension from a file-path in C
I've never understood why the case-*insensitive* version has case in its name. It seems backwards to me. I hope it's not just me.
Nov
11
comment Adding a custom initWith?
Edited code to make it more sensible.
Nov
11
revised Adding a custom initWith?
added 88 characters in body
Nov
11
comment Adding a custom initWith?
Sorry, I didn't provide a very decent example. This code was designed to accept that ivar4 has a default value of 0, unless specifically set with initWithIvar4:. You could just as easily set ivar4 in -[self init] too, but you're right, you could easily end up with some variables initialised and some not, and not easily being able to trace where certain variables are set.
Nov
11
comment C++ Win32 API Controls messages
Yeah, you're right, I'm sorry for stealing your thunder. Have an up-vote. It's only 5 points short of an accept.
Nov
11
revised C++ Win32 API Controls messages
added 137 characters in body
Nov
11
accepted C++ Win32 API Controls messages
Nov
11
answered Adding a custom initWith?
Nov
11
accepted Why doesn’t gcc allow a const int as a case expression?
Nov
11
answered C++ Win32 API Controls messages
Nov
11
revised C++ Win32 API Controls messages
added 26 characters in body
Nov
11
comment C++ Win32 API Controls messages
Win32 is a C API.
Nov
11
answered Why doesn’t gcc allow a const int as a case expression?
Nov
6
comment Whats wrong with this program?
@paxdiablo: I mean the original posted by the OP in his question.
Nov
6
comment Whats wrong with this program?
GCC optimises the strlen out with -O2. I guess the result is known at compile time because the s is known at the time strlen is called, and it points to readonly memory.
Nov
6
comment How to remove extended ascii using python?
Strictly speaking, there's no such thing as Extended ASCII. ASCII defines values from 0 to 127. Anything higher than that can only be interpreted arbitrarily. Perhaps you should use the term non-ASCII characters.
Nov
6
comment How to find out the endianness of a machine through a C program?
Oh no! They both say little-endian!
Nov
6
answered How to find out the endianness of a machine through a C program?
Nov
5
comment Watching a folder using Win32
Thanks for the heads up! I'll be sure to keep this in mind.
Nov
4
accepted Objective-C Imports, primitive types with Cygwin
Nov
2
asked Watching a folder using Win32
Nov
2
answered How to get large file size using c
Nov
2
comment How to get large file size using c
The question and answers provided do not take into account large files. This question is specifically asking for the possibility of a cross-platform function that can be used to determine the size of potentially large files.
Nov
1
comment C fopen vs open
@Aziz, open is a POSIX function though.
Nov
1
answered C fopen vs open
Nov
1
answered Obj-C: Difference between “Fairfield” and @”Fairfield” (with at string)?
Nov
1
comment C: Not explicitly returning constructed struct, but it still works
@myself: assuming x86 of course :)
Nov
1
comment C: Not explicitly returning constructed struct, but it still works
The position of newNode on the stack would be above the return address (to get back to main). The real case is probably that malloc returned its pointer through eax, which was unaltered by the lack of a return statement in the function.
Oct
31
comment SQLLite, NOT EXISTS doesn’t work
The where clause is part of the select, not the insert.
Oct
30
comment Is it possible to check whether you are building for 64-bit with Microsoft C Compiler?
Sorry, I meant to say, performance in my particular case is not important.