7
votes
4answers
106 views
C++ by-reference argument and c linkage
Hi,
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 …
0
votes
11answers
146 views
pointer to array
I'm wondering, can you make a pointer to a group of variables in an array?
like this
array[20]{'a','b','c',...}
pointer = array[6 through 10];
so then you could say...
*pointer[0] == array[6];
…
4
votes
7answers
164 views
dynamic memory created inside a function
I would like to know the technical reason(in terms of memory) why this piece of code will not work:
#include <stdio.h>
#include <stdlib.h>
int* fun(int*);
int main()
{
int a=5;
int* …
6
votes
8answers
264 views
Difference between pointer to a reference and reference to a pointer
What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?
Where should one be preferred over the other?
1
vote
5answers
188 views
Do pointers in java actually exist?
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 …
0
votes
3answers
104 views
Question about passing a variable created in a function
Suppose there exists a function which returns a message
say of the following format:
struct message
{
void* data;
}msgG;
Which would be the best way to extract the data (i.e. Get the message …
0
votes
5answers
137 views
C * operator meaning in array assignment
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??
b[0] = *(start + pos++);
1
vote
7answers
146 views
What’s the difference between Pointers and Global Variables in C?
I'm reading The C Book 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 …
6
votes
13answers
534 views
What does this statement mean? “good C++ programming typically doesn’t use pointers in complicated ways.”
In this other question in the winning answer I read:
... good C++ programming typically
doesn't use pointers in complicated
ways.
What does it mean to not use pointers in complicated ways?
…
3
votes
3answers
95 views
Return pointer from function C
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 …
3
votes
7answers
199 views
C pointers vs. Objective-C pointers
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 …
1
vote
4answers
111 views
How can I use iteration instead of recursion to input values into a linked list?
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 …
2
votes
3answers
124 views
Simple, efficient weak pointer that is set to NULL when target memory is deallocated
Is there a simple, efficient weak/guarded pointer? 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 …
0
votes
2answers
22 views
double free error with pointer to array of mpz_t
Hi,
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 …
0
votes
1answer
77 views
C# - Delegate with ref parameter
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 …
