0
votes
5answers
85 views
Pass by reference in C
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:
int locate(char *name, int &s, int &i)
…
0
votes
1answer
19 views
C# — Create Managed Array from Pointer
Dear Sirs,
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:
…
1
vote
7answers
103 views
Pointer to a casted Pointer?
I've come across pointers to casted pointers (not sure that this is the correct term) in C such as:
*(long *) p = 10; I could never for the life of me understand what it means, or, the other example:
…
4
votes
10answers
297 views
Is there a use for uninitialized pointers in C or C++?
In one of the comments in this question, it was brought out that initializing C++ pointers by default would break compatibility with C.
That's fine, but why would something like this matter? I would …
4
votes
15answers
473 views
[C++] Why aren’t pointers initialized with NULL by default?
Hi,
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...
oh well,
can someone please …
1
vote
1answer
33 views
Associated pointers in derived type? gFortran vs. Intel
Hello,
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:
program test
implicit none
type y
…
1
vote
5answers
198 views
Is C++ the single language that have both pointers and references?
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?
1
vote
9answers
171 views
Can using 0L to initialize a pointer in C++ cause problems?
In this question an initializer is used to set a pointer to null. Instead of using value of 0 value of 0L is used. I've read that one should use exactly 0 for null pointers because exact null pointer …
8
votes
15answers
544 views
What do I need to know about memory in C++?
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 …
0
votes
11answers
214 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];
…
7
votes
4answers
138 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 …
1
vote
5answers
194 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 …
4
votes
7answers
168 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* …
0
votes
3answers
114 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 …
6
votes
8answers
281 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?
