A struct in programming language is a structured (record) type that aggregates a fixed set of labelled objects, possibly of different types, into a single object.

learn more… | top users | synonyms

-2
votes
1answer
61 views

Read data from hyperterminal in C (ASCII )

I need a help to develop a C code to read data from terminal(terminal accepts only ASCII) and to convert this ascii to integer. Do you know or where to find the information or any suggestion? The ...
-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 ...
5
votes
2answers
67 views

C: how to manage a large structure?

In C: I am trying to use a structure containing a large array, and I have a stack overflow error while declaring it. I guess (correctly?) that I don't have enough memory in the stack, and therefore, ...
0
votes
1answer
110 views

How to sum values among matrices of structures under certain conditions in Matlab?

I am new in matlab and I am not familiar with array of matrices. I have a number of matrices nx6: <26x6 double> <21x6 double> <27x6 double> <36x6 double> <29x6 double> ...
1
vote
3answers
56 views

Why is forward declaration of structure not working in my code? When can it be used in C?

Isn't forward declaration, whether for structures or functions, supposed to do what forward declaration is expected to do, ie, to let us use the structure or function before they are defined? Why is ...
0
votes
2answers
58 views

For struct variables s1,s2,why can I initialize “s1={25,3.5}”,assign s2 as “s1=s2”,but then can't use "s1={59,3.14}?

In C we are allowed to assign the value of one structure variable to other if they are of the same type.In accordance with that, in my following program I am allowed to use s1=s2 when both are struct ...
0
votes
5answers
67 views

Unfathomable C structures

Hello I am experiencing something I really don't understand the principle with structures in C. One of my structures contains 2 character strings (named 'seq' and 'foldedSeq'). Both these strings ...
0
votes
1answer
32 views

Segmentation fault with structure containing arrays

My program needs to read the values (integers and floats) from the input file. There are many values in one line, separated by tabs, and there are many lines in the file. I have planned to read the ...
0
votes
1answer
38 views

Link structures with different types of structures in c?

I essentially want to link a struct NodeA to either a struct NodeA or NodeB, eg. struct NodeA{ int type; int data; void *ptr; }; struct NodeB{ int type; float data; void *ptr; }; ...
0
votes
1answer
39 views

Segfault when accessing non-null pointer? (Queue)

The code works fine in a Linux environment, but in Windows it crashes 5-10 seconds after the program starts. The debugger points to n->fired = true; as the problem? void ...
1
vote
1answer
48 views

Request for member in something not a structure or union? DevC++

I have the folowing code: #include <stdio.h> #include <string.h> #define MAX 419430400 #define CHR 50 #define INT 2000 FILE *doc; char *path; int BITE, LOOP; int DOCUMENT[MAX]; int ...
0
votes
2answers
43 views

Header file creating undeclared values

I can't seem to wrap my head around this. I have the same setup for the other program which is a stack,push/pop and it's working perfectly. I'm receiving undeclared values first time used in function ...
-1
votes
1answer
60 views

Trying to fill a 2d array of structures in C++

As above, I'm trying to create and then fill an array of structures with some starting data to then write to/read from. I'm still writing the cache simulator as per my previous question: Any way to ...
2
votes
1answer
49 views

Racket, access structure fields in function

I have a fold function that I want to use on a number of different structures, each structure with arbitrarily named fields. Thus, I need to tell the fold function what kind of structure was passed ...
0
votes
4answers
72 views

Accessing the value pointed by a pointer

Edit: This question should be considered abandoned. I have flagged this question for deletion as i do not know how to even proceed any more at this point. I thank all of you for your willingness and ...
0
votes
0answers
15 views

Data structure for dealing with intervals

I've spotted a question and couldn't solve it: [1 ... n^5] interval was divided into n non-equal non-overlapped intervals. given these intervals and their names, can anyone give me a good data ...
0
votes
4answers
46 views

accessing structure nodes in C

I'm new on StackOverflow so sorry if this topic was already discussed. I'm working on a project, and I need to use the minimum amount of memory, so my question is: is it possible to access the adres ...
0
votes
4answers
40 views

Different sizes for same structure with different ordering in types

//I made these 2 structs struct Book1 { int genre; int year; char* author; }; struct Book2 { int genre; char* author; int year; }; //in my main function ...
-1
votes
3answers
67 views

Reading in from file to structures

I am attempting to read saved data from a file. I am trying to convert the information in the buffer from a string to characters and assign their values to the members of the structure. It seems the ...
1
vote
0answers
11 views

Binary structures description in documentation

I would like to describe the C / C++ binary structures that our program receives through its network socket in our user documentation, but I'm not very experienced in representing that data correctly ...
0
votes
1answer
19 views

In what structure does Windows keep data about what is the working directory (or the current directory) of the process?

While reading on what the working directory and what the script directory (or the directory that contains the image of the executable file) directories are, I started wondering, how does Windows know, ...
0
votes
1answer
30 views

How to take a reference to an element in array of structures [C# ]

Sorry for dump question, but I'm new in C# (moving from C++)... I have a structure: public struct A { int a,b,c,d; } Also I have an array of this structure instances A[] a = new A[10]; So, ...
1
vote
2answers
61 views

The use of arrays within structures

I'm currently studying C++ on a book I bought a month ago. So now here I am, studying the new chapter that talks about structures. The book gives a problem: Write a program that allows a user to ...
0
votes
2answers
47 views

how to sort a vector in the order it is read from file with structures

I have a structure with names and grades inside, I will use a vector which is meant to read the inside of a file till the end with the structure. For example: struct ReadAll{string name; double ...
1
vote
1answer
65 views

Can anyone explain this structure in C?

I have this code #define MAX_DIM 3 struct kd_node_t { double x[MAX_DIM]; struct kd_node_t *left, *right; }; struct kd_node_t wp[] = { {{2, 3}}, {{5, 4}}, {{9, 6}}, {{4, 7}}, {{8, 1}}, ...
0
votes
1answer
228 views

Reading data from a text file into an array of structs

I've seen this question asked before but I can't find an answer that helps me solve my problem. There's a few things happening here. This is displaying a menu that will allow the user to: View ...
0
votes
3answers
37 views

Inputting values to structure members using pointers

I was writing a program for finding the addition, multiplication and division of two rational numbers using a structure and pointers. I am having a problem inputting the numbers with pointers. How ...
1
vote
3answers
41 views

[C++]Memory error thrown at destructor that wasn't there before this code. Trying to make a new dynamic array and populate it

I am working on a lab dealing with queues, which I don't think is entirely relevant. My task is to create a "priority queue" and the best way I could think of to do it is as follows void ...
0
votes
1answer
60 views

making a function with typedef struct with arrays

I was just wondering what I'm doing wrong here? The errors are mostly from my first function, am I calling it wrong? typedef struct{ //typedef and function prototype int x, y, radius; }circle; ...
1
vote
3answers
43 views

Field within structure take random values

I'm new to C and I'm trying to define a matrix using a struct and some methods that will change the int** field of the struct. The matrix is supposed to be dynamically allocated and also resizable in ...
0
votes
1answer
48 views

Accessing structure array data of form1 in form2

Here is my question. I've a custom structure as follows in form1. public struct MessageInfo { public int MessagePosition; public string UserID; public string PutDateTime; ...
0
votes
1answer
34 views

Bus Error 10 on Mac when creating a binary tree in C

I am getting bus error when i trying to create a binary tree using structures in C. Please suggest me a solution to over come this bus error. I am compiling on Mac OSX. #include <stdio.h> ...
0
votes
0answers
65 views

reading file into struct arrays [closed]

The program follows the flow: Information is read into from a externally generated file. Information is parsed, using a buffer and fgets. Information is stored into an array belonging to a structure ...
0
votes
2answers
63 views

C++ :My program won't compile and I am not sure why. I think I am missing a library…? Easy answer [closed]

This is not a homework assignment. I was reviewing my basic C++ knowledge for my new coding class and I was messing around with the structs example he gives in one of the slides. Below is my code: ...
1
vote
2answers
61 views

How to use an array of pointers inside a structure correctly

I have two structures parent and child as you can see in my code below. The parent structure has an array of pointers of type child. I get a segmetation error when the the program enters the for loop. ...
0
votes
1answer
12 views

Accessing values from an array of structures

I'm trying to use an array of a the structure 'sommet', as defined below. typedef struct sommet { double x; double y; char nom[100]; struct arete2* voisin;}; sommet* somtab = (sommet *) ...
-1
votes
2answers
67 views

Structure Program Errors [closed]

Figured it out..................................
0
votes
3answers
66 views

How to read in a file into a structure in C when the file contains special characters to control the process

I've been trying for hours to read in this file into a structure which I want to use in my C programming project. I can't get it to work properly with the structure. Here's the file I want to read ...
1
vote
1answer
55 views

Scope of pointer to structures in c?

#include<stdio.h> #include<conio.h> struct GNode{ struct gnode* nextnode; struct gnode* arcptr; int Visited; } typedef struct GNode* Grnd; struct ArcNode{ struct ...
-8
votes
1answer
83 views

Homework for library [closed]

This is a homework that I want your help in order to do it! Thanks all!!! Hope it is not difficult to give me instructions how to solve it or to give me some parts of code to start with! #include ...
2
votes
4answers
100 views

Passing string to function and returning a structure

I am trying to achieve the simple objective of passing a string to a function and returning a structure containing data about that string. I have written this, but when I try to compile it I get a ...
0
votes
0answers
71 views

Writing multiset of structures to binary file c++

I know the following question has been asked a lot of times on the internet, but I don't seem to be able to get this piece of code right (for days now). I'm quite new to programming in C++, so I think ...
3
votes
7answers
148 views

Should I use Enum, static Class, Dictionary or Struct to represent these “labeled floats” in C#?

I have a constant data structure that represents the relative height of each human vertebra, normalized in relation to total spine height. This is derived from anthropometric studies, etc. I have ...
0
votes
2answers
35 views

Parse text file into structure

For some purposes, I wanna give an external text file as input of one of my MATLAB functions. Generally this text file shows the following layout: ...
0
votes
3answers
78 views

Having trouble with arrays and pointers

I currently reading a book to refreshing my memory on c++. The chapter I'm on has to do with dynamic memory allocation. I doing a practice problem and I'm having some trouble figuring out what is ...
-1
votes
5answers
118 views

C++/C Programming etiquette on passing structures by reference

I have been writing a program that has a rather large structure that is passed by reference to a few functions. However, there are a few other functions that need access to small pieces of information ...
0
votes
2answers
43 views

Inexplicable computational error

I am writing a program that reads wavelength and intensity data from separate signal and background files (so each file is comprised of a number of pairs of wavelength and intensity). As you can see, ...
0
votes
1answer
34 views

undefine reference to function

Hi this is my first time posting here, and I am relatively new to coding so I am having a lot of problems with it. Most of the time I can learn it on my own on on how to fix error, but now I think I ...
0
votes
2answers
64 views

Comparing high and low values to call a function

I want to compare the current in my temperature sensor with the high limit value that i have set in the program using structures. If the temperature sensor valued exceeds the current high limit I ...
5
votes
2answers
69 views

How to slice array of structures into rows, not columns?

Consider the following. a(1).x = [1 2 3]; a(2).x = [4 5 6]; [a.x] will give you [1 2 3 4 5 6]. How to easily get [1 2 3; 4 5 6]. I.e. without using reshape, for example. P.S. The syntax [a.x;] ...

1 2 3 4 5 8