A keyword in the C family of languages for declaring a structured composite data type.
-2
votes
4answers
65 views
C/C++ struct analogy in Java?
I have following code in C, and I have a very little knowledge in Java.
I want to know if there is any way I can create a structure shown in code below in Java. I guess we can do it using class in ...
0
votes
0answers
18 views
truncating files with windows.h, C
I was tasked with creating a random access/ binary list and allowing the program to erase a target record (struct) from it using the windows.h library and it's HANDLE functions.
I'v written the ...
3
votes
4answers
96 views
Why can't a struct have a member that is of the same type as itself?
I'm stuck on understanding what's happening with this struct (from C for Programmers a Deitel book).
The book says, "A structure cannot contain an instance of itself. For example, a variable of ...
0
votes
1answer
38 views
Strange exception thrown when defining an expression with == between a generic struct type to its nullable counterpart
I have some code that is building an Expression<Func<..>> that compares a value type to the nullable of the same value type. In the line that defines the expression, I'm getting the ...
2
votes
1answer
93 views
C progamming: Best data structure for this situation
Hi there.
I have to make a dynamic structure for the image above. The image represents a warehouse, with 4 corridors each one with 3 shelves. Inside the shelves theres a small amount of products (P1 ...
1
vote
1answer
44 views
Changing indices and order in arrays
I have a struct mpc with the following structure:
num type col3 col4 ...
mpc.bus = 1 2 ... ...
2 2 ... ...
3 1 ... ...
...
0
votes
2answers
20 views
Return an Array of a Struct in a WCF Datacontract
i need to return an array of a structure in a Datacontract. i cant manage to make it. i receive an error when setting the values for the array.
Here's the Datacontract declaration:
[DataContract]
...
0
votes
1answer
55 views
Reading a text file with data into a linked list
I am working on a project where I have to read the .txt file where I have data of four elements for each component, ex:
5 2 7 0.99 (which are the components id, inside node, outside node and ...
-9
votes
2answers
52 views
Structure pointer explanation [duplicate]
#include <stdio.h>
#include <stdlib.h>
struct X {
int a;
char b;
};
int main(int argc, char * argv[])
{
struct X *x_ptr = malloc(sizeof(struct X));
x_ptr->a = 10;
...
1
vote
2answers
50 views
C - same data in dynamic struct
Here's my code:
#include <stdio.h>
#include <stdlib.h>
#define STR_LEN 255
#define TRUE 1
typedef struct
{
int id;
char text[STR_LEN];
char ...
1
vote
3answers
20 views
Anonymous C struct with declaration
Considering the following definition:
struct
{
int x;
int y;
} point;
void main()
{
...
}
You're declaring the variable "point" of "anonymous struct" type, is there any way to ...
0
votes
1answer
53 views
struct by reference not changing
I'm trying to make a basic linked list in C, I have a struct and an "append" function. However, no matter how many items I add to it, the struct doesn't change at all. I can't find the bug, really.
...
0
votes
3answers
32 views
Private Keyword in a C Struct
Today, I have just noticed a statement in a C struct, and to be honest I was like WTF at first. It is like;
struct foo {
void *private;
//Some other members
};
Believe or not this struct is being ...
2
votes
3answers
46 views
Setting a struct to an array in an AVR
I'm using an AVR-atmega processor which controls a RTC. In the atmega, the time from RTC is saved as a struct:
typedef struct {
uint8_t year;
uint8_t month;
uint8_t hours;
uint8_t ...
0
votes
1answer
38 views
Return array of struct in Datacontract
i need to return an array of a structure in a Datacontract. i cant manage to make it. i receive an error when setting the values for the array.
Here's the Datacontract declaration:
...
0
votes
2answers
58 views
Differences in 2 similar typedef definition
You can define a Point struct in this way:
typedef struct
{
int x, y;
} Point;
and also in this way:
typedef struct Point
{
int x, y;
};
What is the difference?
1
vote
3answers
53 views
Want to reduce a function by looping through structs
Good Morning All,
I'm trying to reduce a function that's very repetitive, but each "repetition" has two structs with struct A.element1 setting struct B.element1. At the moment I have myFunction() ...
2
votes
3answers
90 views
Using pointers to move between elements in struct
This is closely related to this question.
I am writing some USB code using libusb. Looking at the source code of the library I see they are using pointers to parse data and fill structs.
Example:
...
0
votes
3answers
79 views
c++ malloc() keeps assigning to same memory address
I'm trying to create "nodes" iteratively using memory. My code currently just says what address it goes to, and does not actually try to make the links in the linked list.
Here's the code for a ...
3
votes
1answer
93 views
C++ Struct implicit conversion
I need to declare a good number of simple POD structures that will behave the same but that are really different types, i.e not typedefs.
Anyway I just want to keep them as simple as possible. But ...
3
votes
2answers
34 views
Dynamical access to nested fields in Matlab
(How) Can I dynamically access nested fields in Matlab? I was thinking about a test case like this one:
a = struct;
a.foo.bar = [];
place = {'foo', 'bar'};
a.(place{:})
% instead of the following, ...
0
votes
2answers
28 views
Push_back in vector of objects from agreggate class
I'm having a little issue with vectors. From what I understand, push_back() will copy the argument and insert the copy in the vector.
struct BridgeData
{
string name;
string type;
};
For a ...
1
vote
2answers
66 views
When you need a value type and inheritance
I've run into a bit of a problem.
I need classes or structs to represent different types of vertices (TextureVertex, ColorVertex, etc). I also need a super class (Vertex) as I need to be able to ...
0
votes
2answers
39 views
Seg fault after pthread_create (
I cannot for the life of me figure out why this is seg faulting.
It is seg faulting in
get_ranks_parallel
on the line
for (struct node* node = data->plist->head; node!=NULL; ...
1
vote
2answers
35 views
Pointer to class variable from end of vector
I have a vector that has been sorted by lowest number to highest number. I know the highest number is contained within the last element of the vector. my class has a member called number. I want to ...
0
votes
0answers
30 views
C++11 Struct definition with atomic attribute
In C++11 I have a struct with lots of attributes like so:
#include <atomic>
struct Foo {
int x;
int y;
// ...
// LOTS of primitive type attributes, followed by...
// ...
...
0
votes
1answer
43 views
pure C generic bidirectional hashtable with specific requirements
I have to design and implement a data-structure, which is like bimap, bidimap or dualmap, i.e. hashtable in which values can be used to extract keys and of course in reverse direction.
Normally, it ...
-2
votes
3answers
62 views
How do I pass a pointer to a structure without angering the compiler?
I'm attempting to compile a simple C++ program using MinGW 4.7.2, but am frustrated by a deluge of errors and warnings.
/*\ program.h \*/
typedef struct
{ int member0;
int member1;
int ...
0
votes
1answer
45 views
string pop_back function error
I am having a problem with modifying a string. I appreciate your assistance; thank you!
struct Drawings::menues
{
std::vector<std::string> variable;
} Menue[numMenues];
...
0
votes
3answers
65 views
error: return type is an incomplete type
I can't understand what does it mean, "return type is an incomplete type"?
I just want to return the struct. I had separated two audio channels and I'd like to return them using a struct using the ...
4
votes
3answers
46 views
Assigning values to pointers?
In Dennis Ritchie I found this,
struct rect r , *rp = r;
then these four expressions are equivalent :
r.pt1.x
rp->pt1.x
(r.pt1).x
(rp->pt1).x
...
2
votes
1answer
30 views
C# How to set StructLayoutAttribute.Pack via Reflection?
I am creating a C# struct dynamically via reflection, and when I examine the struct's Type in my debugger I note that the StructLayoutAttribute.Pack is defaulting to 8. I would like to set the Pack to ...
-5
votes
0answers
42 views
Guide me in entering a ASCII value from the terminal (windows xp operating system) [closed]
If a user wants to change the temperature value (say +250 or -250) over the desktop terminal. how will be the message structure for sending this over the serial interface (RS232) among any of the ...
4
votes
0answers
115 views
Initialization of C struct in C++ [duplicate]
For a microcontroller project I'm working on, I'm writing a shared library. I'm mixing C and C++, mainly because of all the pointer arithmic that needs to be done in a low level part and because then ...
0
votes
4answers
71 views
how to write the character value from structure into the serial interface and convert into integer value?
struct MemoryTag1;
typedef struct MemoryTag1{
char a[8]= {'+','0','2','6','.','5','EA','\r'}; // setpoint temperature value
char b[8]= {'-','0','2','4','.','5','EB','\r'};
char c[6]= ...
2
votes
4answers
56 views
C how to modify memory of structs that are inside other structs
If I have two structs:
typedef struct{
unsigned int time;
double rate;
}quote;
typedef struct{
unsigned int freeSlots;
unsigned int end;
unsigned int start;
unsigned int ...
2
votes
4answers
54 views
Large POD as tuple for sorting
I have a POD with about 30 members of various types and I will be wanting to store thousands of the PODs in a container, and then sort that container by one of those members.
For example:
struct ...
0
votes
3answers
64 views
comma separated stream into struct
I have a structure with an int and two strings. When reading in the file it is comma seperated for the first two values and the last value is terminated by a newline. The third argument could be empty ...
2
votes
2answers
67 views
Mixing C with Objective C
I'm a little confused as to whats going on in this snippet of example code.
I am creating a property called 'processingGraph' of C struct 'AUGraph'.
I then pass this struct to the Objective C method ...
0
votes
1answer
19 views
No Input while sorting a stack
There are 3 stacks - A, B, C
Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed:
push, pop, top, is_empty, create
We need ...
-1
votes
1answer
51 views
Null/void pointer incorrect value
We are returning a pointer to a struct in one of our functions. When we print out one of the values of the struct in our main, it is correct. However, when we pass that pointer to another function, ...
5
votes
1answer
55 views
What is the difference between C# marshaled struct pointers?
Ok, this is working:
[StructLayout(LayoutKind.Explicit, Size = 28)]
public unsafe struct HandleProxy
{
[FieldOffset(0), MarshalAs(UnmanagedType.I4)]
public JSValueType _ValueType; // ...
0
votes
2answers
42 views
Copy a char to a struct pointer char
I have 2 structs and a variable type Book
Book book_struct[100];
typedef struct Book{
int id;
char title[256];
char summary[2048];
int numberOfAuthors;
Author * authors;
};
typedef struct ...
2
votes
2answers
77 views
Allocating memory for array in struct (in C)
I need to define a type-struct in C that contains an array to be malloc'd as:
#include <stdio.h>
#include <stdlib.h>
typedef struct mine
{
int N;
double *A;
} mine;
int main(int ...
0
votes
1answer
49 views
C# equivalent of Python's struct.pack?
Is there any function equivalent to Python's struct.pack and struck.unpack in C# that allows me to pack and unpack values like this?
def hexlongbits2double(str):
return struct.unpack('d', ...
0
votes
5answers
69 views
access struct member using a user variable
Let's asume I have a struct as follows:
struct person {
int age;
char name[24];
} person;
and the user gives an argument which struct member the program should read. ./program age
int ...
0
votes
1answer
60 views
How can I set the value of an uninitialised pointer in a function in C?
I'm currently doing an assignment in C and it's the first time that I've really had to understand pointers. I'm mostly getting the hang of it, but it's thrown me into the deep end (at least in my ...
0
votes
4answers
59 views
C - Static array of structs with string member not properly initialised?
Alright, so here goes. I am trying to do a switch over a string value in C, as described here. However, the array of structs does not seem be initialised properly. My (simplified) program looks as ...
0
votes
2answers
31 views
Cellular automaton doesn't make new cells
I'm trying to make a program that is able to create every kind of cellular automatons, such as Conway's game of life and everything else too.
The graphic implementation works perfectly already, so I ...
0
votes
2answers
39 views
Unexpected changes in std::vector
Here is the code:
typedef struct Triplet
{
double value;
int row;
int column;
};
class Matrix
{
public:
//Some methods
double specialMethod(/*params*/);
private:
...







