Tagged Questions

1
vote
3answers
87 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
3answers
87 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
93 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?
0
votes
4answers
55 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
60 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: - …
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
88 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
10 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
174 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 …
1
vote
6answers
112 views

Structs interface

When you define a new struct is better to define also an interface to that type (i.e. "setter" and "getter" functions) or to access members directly via . and -> operators? EDIT Plain C …
0
votes
1answer
26 views

(C#) Can struct be viewed in CLRProfiler?

As CLRProfiler use words like HEAP statistic, OBJECTS finalized, it made me think it will atmost only show boxed struct? So what if the structs are my source of problem? How can I know about it with …
0
votes
2answers
110 views

strcmp struct in c - different elements

I have a struct member that holds lots of string elements. What I want is to iterate the whole member of the struct and count only different elements (diff last names). struct log { char *last; …
1
vote
4answers
91 views

C++ bool array as bitfield?

Hi! let's say i need to store 8 bools in a struct, but i want to use for them only 1 byte together, then i could do something like this: struct myStruct { bool b1:1; bool b2:1; bool …
12
votes
4answers
247 views

Why are .NET value types sealed?

It's not possible to inherit from a C# struct. It's not obvious to me why this is: Clearly you can't have a reference type that inherits from a value type; this wouldn't work It doesn't sound …
-1
votes
0answers
30 views

Structure alignment

for 64 bit (C++) application, natural alignment is better or 8 byte alignment? Thnx

1 2 3 4 5 20 next
15 30 50 per page