active questions tagged struct - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:41:10Z http://stackoverflow.com/feeds/tag/struct http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1857789/how-to-copy-a-char-in-c-into-my-struct 0 How to copy a char[] in c into my struct Bernie Perez 2009-12-07T04:23:15Z 2009-12-07T04:30:01Z <p>I am trying to send my struct over a UDP socket.</p> <p>struct Packet { int seqnum; char data[BUFFERSIZE]; };</p> <p>So on the sender I have</p> <pre><code>bytes = sizeof(packet); char sending[bytes]; bzero(sending, bytes); memcpy((void *) sending, (void *) &amp;packet, sizeof(bytes)); bytes = sendto(sockfd, sending, sizeof(sending), 0, (struct sockaddr *) &amp;client, clientSize); </code></pre> <p>So I'm hoping that copies my struct into the Char[].</p> <p>On the receiver I have</p> <pre><code>int bytes; bytes = sizeof(struct Packet); char recv[bytes]; bytes = recvfrom(sockfd, recv, bytes, 0, (struct sockaddr *) &amp;client, &amp;clientSize); memcpy((void *) currentpkt, (void *) recv, bytes); </code></pre> <p>However on the receiver with <strong>memcpy((void *) currentpkt, (void *) recv, bytes);</strong> I get an error:</p> <blockquote> <p>error: cannot convert to a pointer type</p> </blockquote> <p>What am I doing wrong? Is there a better way to send my struct over a UDP socket?</p> http://stackoverflow.com/questions/1857288/delphi-records-and-c-structs 1 delphi records and c structs Vasiliy Stavenko 2009-12-07T01:25:42Z 2009-12-07T01:39:34Z <p>Task: Application written in Delphi accepts a structure (record in terms of Delphi) of three fields. I can send the pointer of this structure using SendMessage (Win32api) function.</p> <p>So a question is: How to maintain certain structure representation in memory for delphi in terms of delphi. It has type</p> <pre><code> PWPModPostData = ^ TWPModPostData; TWPModPostData = record DataType: Integer; Data: PChar; Next: PWPModPostData; end; </code></pre> <p>How to define it in C. I mean, is there any hidden or service fields in Delphi structures?</p> http://stackoverflow.com/questions/1850809/static-struct-linker-error 1 Static struct linker error bobobobo 2009-12-05T01:47:56Z 2009-12-05T01:54:02Z <p>I'm trying to create a static struct in C++:</p> <pre> static struct Brushes { static HBRUSH white ; static HBRUSH yellow ; } ; </pre> <p>But its not working, I'm getting:</p> <pre> Error 4 error LNK2001: unresolved external symbol "public: static struct HBRUSH__ * Brushes::white" </pre> <p>Why?</p> <p>The idea is to be able to use <code>Brushes::white</code>, <code>Brushes::yellow</code> throughout the program, without having to create an instance of <code>Brushes</code>.</p> http://stackoverflow.com/questions/1850488/pinning-an-updateble-struct-before-passing-to-unmanaged-code 5 Pinning an updateble struct before passing to unmanaged code? DxCK 2009-12-05T00:11:10Z 2009-12-05T01:06:43Z <p>Hi</p> <p>I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous.</p> <p>In other words, after i passing the struct pointer to the unmanaged code, the unmanaged code copies the pointer and returns immediately. The unmanaged code can access that struct in background, in another thread. <strong>I have no control over the unmanaged code that runs in another thread nor the thread itself.</strong></p> <p>The fixed { } statement can't be used for pinning because it not designed for async unmanaged pinning.</p> <p>GCHandle can pin only references, so the struct must be boxed to use GCHandle. I tried it, and it works. The main problem with it, is that you can't update the struct <strong>from managed code</strong>. To update a struct, first of all we need to unbox it, then update, then box again, but... oops ... box again?!? this means the previous pointer in the memory still point to the old non-up-to-date struct, and the new struct have another pointer, and this means that i need to pass new pointer to the unmanaged code... inapplicable in my case.</p> <p>How can i pin a struct in the memory without fixed { } statement, and so that i can update it <strong>from managed code</strong> without change it's pointer?</p> <p>Thanks.</p> <p><strong>Edit:</strong></p> <p>Just thought... is there a way to pin the parent object that contains the struct, and then get the pointer of the <strong>struct</strong> rather than the container object?</p> http://stackoverflow.com/questions/1842974/unity-fatal-execution-engine-error-when-resolving-a-timespan 0 Unity: Fatal Execution Engine Error when resolving a TimeSpan ajmastrean 2009-12-03T21:16:47Z 2009-12-03T22:15:53Z <p>I am trying to resolve a <a href="http://msdn.microsoft.com/en-us/library/system.timespan.aspx" rel="nofollow">TimeSpan</a> using <a href="http://msdn.microsoft.com/en-us/library/cc468366.aspx" rel="nofollow">Unity</a>. Executing the container Resolve call results in a <a href="http://msdn.microsoft.com/en-us/library/ms228990.aspx" rel="nofollow">FatalExecutionEngineError</a>. </p> <blockquote> <p>FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x543c3dc8, on thread 0x1bb8. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack.</p> </blockquote> <p>Running the test in DEBUG causes the following file to be requested by the debugger.</p> <blockquote> <p>X:\Unity\Src\ObjectBuilder\Strategies\BuildPlan\DynamicMethod\DynamicMethodBuildPlan.cs</p> </blockquote> <p>And it shows the following <a href="http://msdn.microsoft.com/en-us/library/system.executionengineexception.aspx" rel="nofollow">ExecutionEngineException</a> on line 38.</p> <blockquote> <p>System.ExecutionEngineException was unhandled Message="Exception of type 'System.ExecutionEngineException' was thrown." InnerException:</p> </blockquote> <p>Test</p> <pre><code>[TestClass] public class Example { private readonly IUnityContainer container = new UnityContainer(); [TestInitialize] public void TestInitialize() { container.Register&lt;TimeSpan&gt;(new ExternallyControlledLifetimeManager()); } [TestMethod] public void Test() { var expected = new TimeSpan(); var actual = container.Resolve&lt;TimeSpan&gt;(); Assert.AreEqual(expected, actual); } } </code></pre> http://stackoverflow.com/questions/1838835/how-to-delete-structure-entries-in-c 0 How to delete structure entries in C Phenom 2009-12-03T09:45:12Z 2009-12-03T10:46:25Z <p>I have a list of structures and I want to delete some of them. I don't want to leave any empty space where the structures are deleted. I tried it with this code, but it didn't work.</p> <pre><code> struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) if(sp-&gt;scope == scope) // delete { sp = sp+1; } </code></pre> http://stackoverflow.com/questions/1827425/how-to-check-programatically-if-a-type-is-a-struct-or-a-class 1 How to check programatically if a type is a struct or a class? Jader Dias 2009-12-01T16:44:42Z 2009-12-03T09:23:05Z <p>I think the question is clear.</p> http://stackoverflow.com/questions/1446861/xaml-serialization-and-immutable-structs 0 Xaml serialization and immutable structs? Will 2009-09-18T21:12:22Z 2009-12-03T07:51:46Z <p>How can I do this?</p> <p>Tried using a TypeConverter, but the only thing I could think of was to construct the XML for the types, which doesn't quite cut it. TypeConverters in xaml serialization will escape xml and treat it like plain text. Value converters aren't much better.</p> <p>Now, I'm moving to ISupportInitialize and will throw if changes are made after initialization, but I would have liked the immutable route...</p> <p><hr /></p> <p>Example of a type I wish to serialize:</p> <pre><code>public struct Foo { public string Bar {get;private set;} public Foo(string bar) : this() { Bar = bar; } } </code></pre> <p>and the code</p> <pre><code>var foo = new Foo("lol"); var serializedFoo = XamlWriter.Save(foo); </code></pre> http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net 14 Why can't I define a default constructor for a struct in .NET Motti 2008-12-02T12:39:25Z 2009-12-02T11:11:24Z <p>In .NET a value type (C# <code>struct</code>) can't have a constructor with no parameters. According to <a href="http://stackoverflow.com/questions/203695/structure-vs-class-in-c#204009">this post</a> this is mandated by the CLI spec. What happes is that for every value-type a default constructor is created (by the compiler?) which initialized all members to zero (or <code>null</code>).</p> <p>Does anyone know why it is disallowed to define such a default constructor?</p> <p>One trivial use is for rational numbers</p> <pre><code>public struct Rational { private long numerator; private long denominator; public Rational(long num, long denom) { /* Todo: Find GCD etc. */ } public Rational(long num) { numerator = num; denominator = 1; } public Rational() // This is not allowed { numerator = 0; denominator = 1; } } </code></pre> <p>Using current C# a default Rational is <code>0/0</code> which is not so cool.</p> <p><strong>P.S.</strong> Will default parameters help solve this for C#4.0 or will the CLR defined default constructor be called?</p> <p><hr /></p> <p><strong>Edit:</strong> <a href="http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net#333840">Jon Skeet</a> answered:</p> <blockquote> <p>To use your example, what would you want to happen when someone did:</p> <pre><code> Rational[] fractions = new Rational[1000]; </code></pre> <p>Should it run through your constructor 1000 times?</p> </blockquote> <p>Sure it should, that's why I wrote the default constructor in the first place, the CLR should use the <em>default zeroing</em> constructor when no explicit default ctor is defined, that way you only pay for what you use. Then if I want a container of 1000 non default <code>Rational</code>s (and want to optimize away the 1000 constructions) I will use a <code>List&lt;Rational&gt;</code> rather than an array. </p> <p>This reason, in my mind, is not strong enough to prevent definition of a default constructor.</p> http://stackoverflow.com/questions/1813865/why-does-c-have-a-distinction-between-and 22 Why does C have a distinction between -> and . ? bk 2009-11-28T21:46:02Z 2009-12-02T05:41:08Z <p>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 <code>-&gt;</code> and <code>.</code> operators?</p> <p>Of course, the current rule is that <code>.</code> acts on a struct, and <code>-&gt;</code> acts on a pointer-to-struct (or union). But here's how it works in practice. Let <code>s</code> be a struct incuding an element <code>x</code>, and let <code>ps</code> be a pointer to a struct of the same form.</p> <p>If you write</p> <pre><code>s-&gt;x </code></pre> <p>the compiler will spit out a warning in the way of</p> <blockquote> <p>You meant s.x. Please retype that and recompile.</p> </blockquote> <p>If you write</p> <pre><code>ps.x </code></pre> <p>the compiler will spit out a warning in the way of</p> <blockquote> <p>You meant ps->x. Please retype that and recompile.</p> </blockquote> <p>Because the compiler knows the type of both <code>s</code> and <code>ps</code> at compile time, it has all the information it needs to interpret what the correct operator would be. I suspect that this isn't like other warnings (like a missing semicolon), in that there is no ambiguity about the correct fix.</p> <p>So here's a hypothetical proposal to the C1x standards committee (that would never be considered, because the ISO is on a conservative streak):</p> <blockquote> <p>Given the expression lhs.rhs, if lhs is a struct or union type, then the expression shall refer to the element of lhs named rhs. If lhs is of type pointer-to-struct or -union, then this shall be interpreted as (*lhs).rhs.</p> </blockquote> <p>This would certainly save us all time, and make it easier for people to learn C [and I've taught enough C to say with authority that learners find the <code>-&gt;</code> thing to be either confusing or annoying.] </p> <p>There's even precedent, where C does a handful of similar things. E.g., for implementation reasons, function declarations are always cast to pointer-to-function, so <code>f(x,y)</code> and <code>(*f)(x,y)</code> will both work regardless of whether <code>f</code> was declared as a function or a pointer to function.</p> <p>So, my question: what's wrong with this proposal? Can you think of examples where there would be fatal ambiguity between <code>ps.x</code> and <code>s.x</code>, or why keeping the mandatory distinction is otherwise useful?</p> http://stackoverflow.com/questions/1825715/how-to-pack-and-unpack-using-ctypes-structure-str 1 How to pack and unpack using ctypes (Structure <-> str) Mr Temp 2009-12-01T11:57:23Z 2009-12-01T17:24:38Z <p>This might be a silly question but I couldn't find a good answer in the docs or anywhere.</p> <p>If I use <strong>struct</strong> to define a binary structure, the struct has 2 symmetrical methods for serialization and deserialization (pack and unpack) but it seems <strong>ctypes</strong> doesn't have a straightforward way to do this. Here's my solution, which feels wrong:</p> <pre><code>from ctypes import * class Example(Structure): _fields_ = [ ("index", c_int), ("counter", c_int), ] def Pack(ctype_instance): buf = string_at(byref(ctype_instance), sizeof(ctype_instance)) return buf def Unpack(ctype, buf): cstring = create_string_buffer(buf) ctype_instance = cast(pointer(cstring), POINTER(ctype)).contents return ctype_instance if __name__ == "__main__": e = Example(12, 13) buf = Pack(e) e2 = Unpack(Example, buf) assert(e.index == e2.index) assert(e.counter == e2.counter) # note: for some reason e == e2 is False... </code></pre> http://stackoverflow.com/questions/1818242/c-equivalent-of-pythons-struct-pack 1 C# equivalent of python's struct.pack Elazar Leibovich 2009-11-30T07:01:44Z 2009-11-30T07:07:41Z <p>Is there a library for C# that allows similar functionality to python's <code>struct</code> from the <a href="http://docs.python.org/library/struct.html" rel="nofollow">standard library</a>?</p> <p>One can emulate the struct library quite closely with real aligned structs. But I didn't find yet any way to directly control the endianess in C#'s structs (the C#'s structs seems to be geared more towards COM interop, and less toward general purpose binary packing).</p> http://stackoverflow.com/questions/1817542/how-to-set-an-autoproperty-in-the-constructor-of-a-struct 0 How to set an autoproperty in the constructor of a struct? Simon 2009-11-30T02:04:51Z 2009-11-30T02:26:21Z <p>Why is this valid</p> <pre><code>public struct MyStruct { public MyStruct(double value) { myField = value; } private double myField; public double MyProperty { get { return myField; } set { myField = value; } } } </code></pre> <p>and this is not</p> <pre><code>public struct MyStruct { public MyStruct(double value) { MyProperty = value; } public double MyProperty { get; set; } } </code></pre> http://stackoverflow.com/questions/1815677/nested-structures 0 Nested structures Ankur 2009-11-29T14:31:46Z 2009-11-30T01:19:37Z <p>The following code compiles on a C++ compiler.</p> <pre><code>#include&lt;cstdio&gt; int main() { struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; </code></pre> <p>Would there be any difference in behavior while compiling with a C compiler?<br> i.e. would there be any compiler error?</p> http://stackoverflow.com/questions/1815312/c-generics-constrain-to-specific-structs 1 C# Generics, Constrain to Specific Structs Ben Aston 2009-11-29T11:39:19Z 2009-11-29T15:52:57Z <p>Is it possible to constrain a genericised method to accept only specific types of struct?</p> <p>This is OK I believe:</p> <pre><code>string Add&lt;T&gt;(object value, T expiration) where T : struct; </code></pre> <p>but this isn't it appears:</p> <pre><code>string Add&lt;T&gt;(object value, T expiration) where T : Struct1, Struct2; </code></pre> <p>Note: the structs I wish to constrain it to are DateTime or TimeSpan and hence I have no control over them.</p> <p>Thanks</p> http://stackoverflow.com/questions/1813991/c-structure-with-pointer-to-self 1 C structure with pointer to self shazarre 2009-11-28T22:39:41Z 2009-11-28T23:07:06Z <p>Hi!</p> <p>Is it posible to define a structure with a pointer to that type of structure? What I mean is:</p> <pre><code>typedef struct { char* name; node* parent; } node; </code></pre> <p>As far as I tried or read, I don't know how to do this or if it's even possible.</p> http://stackoverflow.com/questions/1813266/unique-elements-struct-array 0 unique elements - struct array Josh 2009-11-28T18:17:46Z 2009-11-28T18:23:52Z <p>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.</p> <p>The struct array containing the following elements:</p> <pre><code>195.55.121.242 212.80.168.34 65.55.106.114 65.55.207.30 65.55.207.95 65.55.230.237 66.249.68.16 66.249.68.16 66.249.68.16 67.195.37.172 67.195.37.172 67.218.116.162 80.59.182.176 80.59.182.176 83.213.81.220 83.213.81.220 83.43.21.186 83.43.21.186 </code></pre> <p>Code:</p> <pre><code>typedef struct { char *ip; }thestruct; qsort(mystruct, 18, sizeof(thestruct*), cmpme); int un = 0; for (i=0; i&lt;18; i++) { if (strcmp(mystruct[i++]-&gt;ip,mystruct[i]-&gt;ip)!=0) { un++; } } </code></pre> <p>By doing a simple gets-strcmp with only one element (ip) I get that both strings are equal. Which tells me that strcmp is treating it as a string.</p> <p>I'm not quite sure what I am missing. </p> <p>Any help will be appreciate it.</p> <p>Thanks</p> http://stackoverflow.com/questions/1806541/struct-sorting-a-c-string-with-qsort 1 struct - sorting a c-string with qsort Josh 2009-11-27T02:46:14Z 2009-11-28T05:54:24Z <p>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.</p> <pre><code>66.249.71.3 190.148.164.245 207.46.232.182 190.148.164.245 190.148.164.245 202.154.114.253 190.148.164.245 190.148.164.245 66.249.71.3 190.148.164.245 202.154.114.253 </code></pre> <p>Here it is the way Im sorting them.</p> <pre><code>typedef struct { char *ip; } mystruct; /* qsort */ int struct_cmp(const void *a, const void *b) { mystruct *ia = (mystruct *)a; mystruct *ib = (mystruct *)b; return strcmp(ia-&gt;ip, ib-&gt;ip); } ... qsort(a_struct, 11, sizeof(mystruct*), struct_cmp); for(..){ printf("%s\n",a_struct[i]-&gt;ip); } </code></pre> <p>Any help will be appreciate it. Thanks</p> http://stackoverflow.com/questions/1810949/is-this-a-proper-usage-of-the-struct-element-in-c-kind-of-confused 0 Is this a proper usage of the struct element in C#? Kind of confused. Papuccino1 2009-11-27T23:12:36Z 2009-11-27T23:23:12Z <p>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 information.</p> <p>My questions is should I use a struct to easily organize the information and then pass a List to a Form looking to utilize the information?</p> <p>A typical set of information I will be scraping is for example:</p> <pre><code>[Hero Name] [Hero Type] [Starting HP] [Starting Mana] [Portrait] [Backstory] [Spell 1] [Spell 1 Description] [Spell 2] [Spell 2 Description] [Spell 3] [Spell 3 Description] [Spell 4] [Spell 4 Description </code></pre> <p>]</p> <p>Should I use a struct for this case? Hero name is a string, hero type as well. But for example, the [Portrait] will be an image. Can a struct hold multiple Data Types?</p> http://stackoverflow.com/questions/1807379/does-a-capital-decimal-use-more-memory-as-a-lowercase-decimal 1 Does a capital Decimal use more memory as a lowercase decimal google 2009-11-27T08:16:56Z 2009-11-27T08:26:41Z <p>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.</p> <p>Is that true?</p> http://stackoverflow.com/questions/1802221/how-to-set-a-struct-member-of-type-string 0 How to set a struct member of type string Phenom 2009-11-26T08:12:11Z 2009-11-26T08:24:10Z <p>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?</p> http://stackoverflow.com/questions/1760812/passing-primitive-or-struct-type-as-function-argument 0 passing primitive or struct type as function argument SooDesuNe 2009-11-19T04:02:37Z 2009-11-25T01:41:21Z <p>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:</p> <pre><code>- (void)sendUpdatePacket:(MyPacketType)packet{ for(NSNetService *service in _services) for(NSData *address in [service addresses]) sendto(_socket, &amp;packet, sizeof(packet), 0, [address bytes], [address length]); } </code></pre> <p>I would really like to be able to send this function ANY kind of packet, not just MyPacketType packets.</p> <p>I thought maybe if the function def was:</p> <pre><code>- (void)sendUpdatePacket:(void*)packetRef </code></pre> <p>I could pass in anykind of pointer to packet. But, without knowing the type of packet, I can't dereference the pointer.</p> <p>How do I write a function to accept any kind of primitive/struct as its argument?</p> http://stackoverflow.com/questions/1793971/why-does-gcc-give-me-a-syntax-error-when-trying-to-return-a-struct-pointer 3 Why does GCC give me a syntax error when trying to return a struct pointer? jamesk89 2009-11-25T00:44:38Z 2009-11-25T00:50:56Z <p>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:</p> <pre><code>error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token </code></pre> <p>Here is an example I wrote up to demonstrate this error:</p> <pre><code>#include &lt;stdio.h&gt; typedef struct test_t { unsigned char someVar; }; test_t* testFunc() { // GCC throws that error on this line return NULL; } int main(int argc, char **argv) { return 0; } </code></pre> <p>So unless I'm forgetting something obvious I would normally expect this code to compile on any other compiler, namely MSVC, so I'm completely confused as to why it doesn't work.</p> <p>Hopefully one of you experts can please enlighten me.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1790554/how-do-i-send-a-struct-from-c-to-vb6-and-from-vb6-to-c 0 How do I send a struct from C# to VB6, and from VB6 to C#? mikeh 2009-11-24T14:49:10Z 2009-11-24T21:27:56Z <p>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?</p> <p>I am able to send basic ints back and forth with PostMessage (using DllImport in C# and registering the vb6 app with windows messaging), but need to send more structured data, consisting of strings, ints, and decimal.</p> <p>Looking for the easiest solution to implement passing of structures data back and forth.</p> <p>Basic sample of VB6 type</p> <pre><code>Public Type udtSessionData SessionID As Integer SessionName As String MinVal As Currency PctComplete As Double NVal As Integer ProcessedFlag As Boolean ProcessedDate As Date Length As Integer End Type </code></pre> http://stackoverflow.com/questions/1788879/pbl-xcode-c-typedef-struct-toto-toto 0 Pbl xcode C++ typedef struct toto toto Sebastien BARBIER 2009-11-24T09:18:28Z 2009-11-24T09:53:01Z <p>Hi everyone,</p> <p>I am working on a C++ project on macOS X 10.6.2 with xcode.</p> <p>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 right now.</p> <p>My problem is xcode do not accept this kind of instruction :</p> <pre><code>struct direction { double x; double y; double z; double t; }; typedef struct direction direction; </code></pre> <p>Here is my error :</p> <blockquote> <p>/Users/sbarbier/dev/xcode/Infographie/TP9-RayTracing/RayTracing-Direction.h:22:0 /Users/sbarbier/dev/xcode/Infographie/TP9-RayTracing/RayTracing-Direction.h:22: error: changes meaning of 'direction' from 'typedef struct direction direction'</p> </blockquote> <p>I am using GCC4.2 and haven't change anything. This code works on every platform, can any one help me ?</p> http://stackoverflow.com/questions/1784782/is-there-any-way-to-loop-through-a-struct-with-elements-of-diferent-types-in-c 1 Is there any way to loop through a struct with elements of diferent types in C? drigoSkalWalker 2009-11-23T17:44:54Z 2009-11-24T09:42:51Z <p>Hi,</p> <p>my struct is some like this </p> <pre><code>typedef struct { type1 thing; type2 thing2; ... typeN thingN; } my_struct </code></pre> <p>how to enumerate struct childrens in a loop such as while, or for? thanks in advance.</p> http://stackoverflow.com/questions/1784652/structs-interface 1 Structs interface Marco 2009-11-23T17:23:29Z 2009-11-23T18:07:20Z <p>When you define a new <code>struct</code> is better to define also an interface to that type<br> (i.e. "setter" and "getter" functions) or to access members directly via <code>.</code> and <code>-&gt;</code> operators?</p> <p><strong>EDIT</strong><br> Plain C programming</p> http://stackoverflow.com/questions/1780990/c-can-struct-be-viewed-in-clrprofiler 0 (C#) Can struct be viewed in CLRProfiler? Led 2009-11-23T03:39:36Z 2009-11-23T05:50:30Z <p>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 CLRProfiler??</p> http://stackoverflow.com/questions/1780350/strcmp-struct-in-c-different-elements 0 strcmp struct in c - different elements Mike 2009-11-22T23:02:14Z 2009-11-23T02:21:47Z <p>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). </p> <pre><code>struct log { char *last; }; ... struct log *l l-&gt;last = last_name; // loading *last member with data coming from last_name var ... </code></pre> <p>What would be a good way to compare and count unique elements currently on <strong>*last</strong>?</p> <p>Any help will be appreciate it.</p> http://stackoverflow.com/questions/1772395/c-bool-array-as-bitfield 1 C++ bool array as bitfield? Mat 2009-11-20T18:29:29Z 2009-11-20T18:55:11Z <p>Hi!</p> <p>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:</p> <pre><code>struct myStruct { bool b1:1; bool b2:1; bool b3:1; bool b4:1; bool b5:1; bool b6:1; bool b7:1; bool b8:1; }; </code></pre> <p>and with this i could do things like </p> <pre><code>myStruct asdf; asdf.b3=true; asdf.b4=false; if(asdf.b1) ... </code></pre> <p>is this correct so far? (i don't know it actually, i never used bitfields before)</p> <p>ok - but is it also possible to create a static array of 8 bools such that they will use only 8 bits but i will still be able to adress them by index?</p> <p>something like </p> <pre><code>struct myStruct { public: bool b[8]:8; }; </code></pre> <p>maybe? (with this, i get a error C2033)</p> <p>thanks for the help!</p>