0
votes
1answer
5 views
iPhone Splash: “Default.png” displays on simulator but not the iPhone
Hi there,
I'm trying to give my iPhone a splash screen.
I've placed Default.png in my resources group. When I run the simulator it is displayed as expected, however when I install my application to …
2
votes
0answers
23 views
Read GOT entry in Elf Binary
Hi,
I want to write a little function's tracer. I use ptrace.
I'm on ubuntu x86_64. I want to found the address of the shared library function (like printf).
But i have some problem and some …
2
votes
3answers
62 views
Speclialized hashtable algorithms for dynamic/static/incremental data
I have a number of data sets that have key-value pattern - i.e. a string key and a pointer to the data. Right now it is stored in hashtables, each table having array of slots corresponding to hash …
16
votes
11answers
489 views
If C does not support ‘passing by reference’, why does this work?
If C does not support 'passing a variable by reference', why does this work?
/****************************************************************************
Query: If 'Pass by Reference' is not …
0
votes
4answers
53 views
Using C to remove certain characters then put rest in array
How can I take a string (in this case it'll be loaded from a file) then remove certain characters and store them in an array.
Ex:
f.e.d.r.t.g.f
remove "." to get f e d r t g f in an array where I …
3
votes
6answers
69 views
Is this a safe way to share read-only memory with child processes?
I want to allocate and initialise a fairly large chunk of contiguous memory (~1GB), then mark it as read-only and fork multiple (say several dozen) child processes which will use it, without making …
5
votes
3answers
86 views
Where can I get started with Unicode-friendly programming in C?
So, I’m working on a plain-C (ANSI 9899:1999) project, and am trying to figure out where to get started re: Unicode, UTF-8, and all that jazz.
Specifically, it’s a language interpreter project, and I …
9
votes
4answers
1k views
Getting gdb to save a list of breakpoints?
OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command as in this question. Does gdb have a method for dumping them into a file …
0
votes
1answer
74 views
Production code for finding junction in a linked list
Hi all,
I was asked this question in some interview.
I was required to write code for finding junction in a linked list (which is in form of Y with both arms not necessarily equal) for production …
2
votes
8answers
130 views
Swapping Objects Using Pointers in C
I'm trying to swap objects for a homework problem that uses void pointers to swap objects. The declaration of my function has to be:
void swap(void *a, void *b, size_t size);
I'm not looking for …
3
votes
5answers
118 views
Inconveniences of pointers to static variables
I often use convenience functions that return pointers to static buffers like this:
char* p(int x) {
static char res[512];
snprintf(res, sizeof(res)-1, "number is %d", x));
return res;
…
0
votes
3answers
35 views
Portable used defined character class division in C89 by a lookup table, would you do this?
static const int class[UCHAR_MAX] =
{ [(unsigned char)'a'] = LOWER, /*macro value classifying the characters*/
[(unsigned char)'b'] = LOWER,
.
.
.
}
This is just an idea. Is it a bad one?
4
votes
5answers
177 views
#if 0 as a define
I need a way to define a FLAGS_IF macro (or equivalent) such that
FLAGS_IF(expression)
<block_of_code>
FLAGS_ENDIF
when compiling in debug (e.g. with a specific compiler switch) compiles to
…
0
votes
0answers
58 views
C++ library works in vb6 but not in c#
Hello,
I'm writing a C# application that has to consume a C++ api provided by my customer. The library works fine when it's referenced by a vb6 application, but when I reference it in my c# …
0
votes
1answer
89 views
Creating an MJPEG Viewer Iphone
Hey all,
Im trying to make a MJPEG viewer in Objective C but I'm having a bunch of issues with it.
First off, Im using AsyncSocket(http://code.google.com/p/cocoaasyncsocket/) which lets me connect …
