0
votes
1answer
12 views
C# equivalent of python’s struct.pack
Is there a library for C# that allows similar functionality to python's struct from the standard library?
One can emulate the struct library quite closely with real aligned structs. But I didn't find …
0
votes
3answers
44 views
How to set an autoproperty in the constructor of a struct?
Why is this valid
public struct MyStruct
{
public MyStruct(double value)
{
myField = value;
}
private double myField;
public double MyProperty
{
get
…
0
votes
7answers
157 views
Nested structures
The following code compiles on a C++ compiler.
#include<cstdio>
int main()
{
struct xx
{
int x;
struct yy
{
char s;
struct xx *p;
};
struct yy *q;
};
Would there be any difference in …
1
vote
4answers
72 views
C# Generics, Constrain to Specific Structs
Is it possible to constrain a genericised method to accept only specific types of struct?
This is OK I believe:
string Add<T>(object value, T expiration) where T : struct;
but this isn't it …
1
vote
5answers
130 views
C structure with pointer to self
Hi!
Is it posible to define a structure with a pointer to that type of structure? What I mean is:
typedef struct {
char* name;
node* parent;
} node;
As far as I tried or read, I don't know …
19
votes
7answers
496 views
Why does C have a distinction between -> and . ?
OK, this is of no serious consequence, but it's been bugging me for a
while: Is there a reason for the distinction between the -> and . operators?
Of course, the current rule is that . acts on a …
0
votes
2answers
38 views
unique elements - struct array
I have a sorted struct of IPs where I need to get the number of unique IPs, for some reason the way I'm doing it, is giving me a "0" as a result. Which in this case there should be 12 unique ips.
The …
0
votes
3answers
92 views
Is this a proper usage of the struct element in C#? Kind of confused.
I'm making a class that will read information from resource files (doesn't matter the type of resource file, just for clarification) and pass
the information on a Form for easy manipulation of …
1
vote
4answers
96 views
Does a capital Decimal use more memory as a lowercase decimal
I heard someone say that in C#, capital Decimal is using more memory than lower case decimal, because Decimal is resolved to the lowercase decimal and that requires memory.
Is that true?
1
vote
3answers
92 views
struct - sorting a c-string with qsort
I'm sorting a bunch of IPs, but for some reason they come in the wrong order. I'm not quite sure where could be the problem.
66.249.71.3
190.148.164.245
207.46.232.182
190.148.164.245
…
0
votes
4answers
57 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?
3
votes
4answers
127 views
Why does GCC give me a syntax error when trying to return a struct pointer?
I'm using CodeLite on Ubuntu and for some bizzare reason GCC keeps throwing this error whenever I try to compile code with a function that returns a pointer to a struct:
error: expected ‘=’, ‘,’, …
0
votes
3answers
89 views
How do I send a struct from C# to VB6, and from VB6 to C#?
I need to send a struct from C# to a VB6 app, modify the data in VB6, and send the result back via windows messaging. How do I do this?
I am able to send basic ints back and forth with PostMessage …
0
votes
2answers
12 views
Pbl xcode C++ typedef struct toto toto
Hi everyone,
I am working on a C++ project on macOS X 10.6.2 with xcode.
I tried to compile my code on windows and do not have any problem, I guess Linux is working but I don't have one with me …
0
votes
4answers
176 views
Is there any way to loop through a struct with elements of diferent types in C?
Hi,
my struct is some like this
typedef struct {
type1 thing;
type2 thing2;
...
typeN thingN;
} my_struct
how to enumerate struct childrens in a loop such as while, or for?
thanks in …
