Top "Structure" questions

Structure is a fundamental, tangible or intangible notion referring to the recognition, observation, nature, and permanence of patterns and relationships of entities.

Print the structure fields and values in C

I am interested in printing the structure fields . Typedef struct { UINT32 thread_id; BOOL is_valid; }T_THREAD; Is there …

c printf structure
read bitmap file into structure

I would like to read a bitmap file into a struct and manuplate it like make a mirror effect etc. …

c bitmap structure bitmapimage
c++ vector last element field

I have a vector vec of structures. Such a structure has elements int a, int b, int c. I would …

c++ vector structure
uml classdiagram constructor with parameters

I am a complete ROOKIE at this so I need some help on it. How would you create uml class …

class structure diagram pseudocode
C++ how to delete a structure?

Structure I created: struct VideoSample { const unsigned char * buffer; int len; }; VideoSample * newVideoSample = new VideoSample; newVideoSample->buffer = buf; newVideoSample-&…

c++ structure
How to fill a DataTable with a List(Of t) or convert a List(Of t) to a DataTable?

I have read many posts on this topic; among them and most recently .NET - Convert Generic Collection to Data …

vb.net datatable structure generic-list
Writing Structs to a file in c

Is it possible to write an entire struct to a file example: struct date { char day[80]; int month; int year; };

c file-io structure
How can I declare and initialize an array of pointers to a structure in C?

I have a small assignment in C. I am trying to create an array of pointers to a structure. My …

c null pointers malloc structure
java.util.zip - Recreating directory structure

While trying to zip an archive using the java.util.zip I ran into a lot of problems most of …

java directory zip structure
Arrow Operator vs. Dot Operator

It seems to me that C's arrow operator (->) is unnecessary. The dot operator (.) should be sufficient. Take the …

c pointers structure