0
votes
4answers
23 views
Returning a structure array using pointers
typedef struct unit_class_struct {
char *name;
} person;
person * setName() {
person * array;
array = malloc (2 * sizeof(person));
array->name = …
0
votes
0answers
29 views
void pointers and ffcall library
I'm using the ffcall (specifically the avcall package of ffcall) library to dynamically push parameters to variadic functions. i.e. we have
int blah (char *a, int b, double c, ...);
and we want to …
2
votes
6answers
228 views
C pointers : pointing to an array of fixed size
This question goes out to the C gurus out there:
In C, it is possible to declare a pointer as follows:
char (* p)[10];
.. which basically states that this pointer points to an array of 10 chars. …
0
votes
5answers
57 views
Passing a structure by reference and manipulating it
typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
…
1
vote
4answers
92 views
double pointer and structures
Hi. I'm pretty sure I'm doing nothing wrong, but thought I'd ask anyway.
We have:
struct some_struct **array_of_ptrs = calloc (num, sizeof (struct some_struct*));
Now assume I just point each of …
1
vote
3answers
48 views
Why aren’t objects of type ‘id’ initialized as pointers with a ‘*’ in Objective-C?
If I'm using Objective-C, here's how I declare an initialize an int:
int a = 1;
vs an object:
myObj *a = [[myObj alloc] init];
So this is a pointer to an object as denoted by the '*'. My …
0
votes
4answers
57 views
Issue with C function returning a gchar**
I have a function defined as the following (in C):
gchar **Scan_Return_File_Tag_Field_From_Mask_Code (File_Tag *FileTag, gchar code)
{
switch (code)
{
case 't': /* Title */
…
0
votes
1answer
76 views
Pointer for item in iteration over std::list
I'm working on a very basic game and I have a std::list collection of objects that pertain to my game. I declared it as:
std::list<Target> targets;
When I iterate over it, using
for …
0
votes
4answers
56 views
How to set a struct member of type string
I have a struct which contains a member called char *text. After I've created an object from the struct, then how do I set text to a string?
0
votes
2answers
61 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs looks like:
- …
0
votes
1answer
36 views
Untyped Pointer in Pascal
What can I do with untyped pointers in Pascal? (Why untyped pointers are good?)
2
votes
4answers
114 views
When to use malloc for char pointers
I'm specifically focused on when to use malloc on char pointers
char *ptr;
ptr = "something";
...code...
...code...
ptr = "something else";
Would a malloc be in order for something as trivial as …
1
vote
2answers
134 views
Creating a pointer class a bad idea? (C#)
Hi, I have a bit of a design dilemma at present. I have an abstract class Firmware which handles file transfer (updating the firmware) and a few other things such as version.
The trouble is that I …
0
votes
1answer
58 views
Pointer reference?
Hi,
I'm pretty new to iPhone application development and I'm doing well so far. But at one point my App doesn't do what it is intend for...
It's a tableview based app and i'm pushing a new controller …
0
votes
1answer
97 views
Why do I see 64-bit pointers in C++ on my 32-bit Mac OS X system?
So I've read a lot of related posts on SO and elsewhere such as:
http://stackoverflow.com/questions/399003/is-the-sizeofsome-pointer-always-equal-to-four
It makes total sense to me that on a 32-bit …
