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.

input_event structure description (from linux/input.h)

Can someone please tell me what are the properties of the datatypes used by the input_event structure? It is …

c++ c linux input structure
Printing values of all fields in a C++ structure

Consider a simple structure: struct abc { int a; char b; } I got some value in a variable defined as its …

c++ visual-c++ structure
Compare structures of two databases?

I wanted to ask whether it is possible to compare the complete database structure of two huge databases. We have …

mysql database compare structure mysqldump
Best practice for storing tags in a database?

I developed a site that uses tags (key words) in order to categorize photographs. Right now, what I have in …

mysql performance optimization tags structure
Padding in structures in C

This is an interview question. Till now, I used to think such questions were purely compiler dependent and shouldn't worry …

c structure padding
Is it valid to use bit fields with union?

I have used bit field with a structure like this, struct { unsigned int is_static: 1; unsigned int is_extern: 1; unsigned …

c structure bit-fields unions
How to structure api calls in Vue.js?

I'm currently working on a new Vue.js application. It depends heavily on api calls to my backend database. For …

api structure vue.js vuex
Is there a way to access individual bits with a union?

I am writing a C program. I want a variable that I can access as a char but I can …

c structure bits unions
Solr documents with child elements?

Is it somehow possible to create a solr document that contains sub-elements? For example, how would I represent something like …

solr nested document structure
Quickest way to initialize an array of structures to all-0's?

I'm trying to initialize an array of structures to all-0's, using the below syntax: STRUCTA array[MAX] = {0}; However, I'm …

c initialization structure