**Structure** is a fundamental, tangible or intangible notion referring to the recognition, observation, nature, and permanence of patterns and relationships of entities.
-1
votes
0answers
10 views
MVC Code Structure - calling model methods [closed]
I have a basic swing application that follows the MVC structure and a question that relates to the methods in the model and how I call them.
Before I ask my question I will provide some background ...
-5
votes
1answer
33 views
what is the error of Error 126: Inconsistent structure definition 'unnamed' in C?
I am trying to link the my C code, and I got the following error message:
Error 126: Inconsistent structure definition 'unnamed'
there is no line number indicated which line has problems, and I do ...
0
votes
0answers
72 views
OO Structure: Pointer to derived classes C++
I'm creating a menu system for an openGL application I'm working on in C++. I'm shooting for a structure to something I've learned before (TObjects in Delphi). The structure I am shooting for is ...
0
votes
1answer
27 views
Openmp-C++ efficiency: an array of structures vs. several arrays
I am using c++ with openmp, and have a concern on the computational efficiency of the following two ways in organizing the data:
(1)
struct A
{
int n;
double v;
double f[3];
....
...
0
votes
1answer
18 views
What PHP would be used to respond to a URL without the traditional folder/file set up?
With many web sites, if you use as the URL, for example, www.example.com/pages/main/index.php, you are accessing the file 'index.php' in the folder 'main' in the folder 'pages.' How would you instead ...
0
votes
1answer
45 views
Memory alignment in an array of structures
I have an array of structures defined as below:
struct {
int x;
char y;
} arr[10];
The size of int on my machine is 4 bytes and a char is of 1 byte. I know the structures would be padded ...
0
votes
0answers
9 views
One large controller vs many smaller controllers for performance
I am building an app that has about 40 screen in it amongst 4 tabs. I am trying to figure out what is the best way to structure the controllers. 40 views and matching 40 controllers? Or does it make ...
2
votes
4answers
63 views
Output of Structure Size having bitfield
#include<stdio.h>
static struct s
{
unsigned a:5;
unsigned b:5;
unsigned c:5;
unsigned d:5;
}v={1,2,3,4};
int main()
{
printf("size of v = %d\n",sizeof(v));
}
...
3
votes
4answers
148 views
+50
Explanation of output of this program
#include <stdio.h>
int main()
{
struct bitfield
{
unsigned a:5;
unsigned c:5;
unsigned b:6;
} bit;
char *ptr;
struct bitfield bit1={1,3,3};
...
0
votes
1answer
50 views
Server/Client program in C: how to send correctly dimension of structure elements via socket?
I have a feeling this must be a silly error due to my lack of understanding of C issues, but I am not able to find a solution.
I am quite new to C, and I am working on a Client/Server program with ...
2
votes
1answer
24 views
Using Matlab, how can I group rows by year into a structure?
Using Matlab, I am trying to build a structure that will store grouped rows of matrix X organized by year. The vector yrsStr has each year which will need to be grouped by. Please refer to matrix X ...
0
votes
3answers
21 views
php include header and footer in complex file structure
I have to following file structure:
ROOT
index.html
INCLUDES
header.html
footer.html
FOLDER1
FOLDER2
FOLDER3
FOLDER4
...
0
votes
0answers
9 views
difficulty creating a descent cms folder structure
First of let me say I've only been programming in PHP for a year or so (and mostly very basic stuff). Next I appologize for the long text that follows...
To expand my knowledge and get a feel for the ...
-3
votes
0answers
45 views
Pragma and Compiler depndency [closed]
In the padding it will take memory than it's actual size,but when I use pragma pack It show the actual memory which I used in code.
Can anybody tell me how actually pragma do?
Is pragma compiler ...
-9
votes
3answers
52 views
Access element of array of pointer of structure
I want to access the element of array of pointer to structure but i have no idea how to access it.
#include<stdio.h>
int main()
{
struct hash
{
int pages;
int price;
};
struct hash ...
0
votes
0answers
8 views
Correlation between 2D Sea Surface Temperature Data and 2D PDO Index
I am trying to correlate 12 years of sea surface temperature data for the months of January, February, and March for a model domain that's 1280x720 to the Pacific Decadal Index (PDO) which is a single ...
0
votes
1answer
36 views
Coding a simulation/management game in WPF - Is MVVM the way to go? [closed]
I am fairly new to programming but I've been learning a lot recently and I have decided to start working on my first real game. It started as a big mess in WinForms and I was getting very frustrated, ...
0
votes
1answer
26 views
having trouble referencing directory structure
I have a directory structure:
/Users/Eamon/Sites:
-js
application.js
-reqscripts
jquery.js
-templates
login_success.php
logout.php
checklogin.php
checkreglogin.php
index.php
...
0
votes
0answers
23 views
CouchDB : How should I design the data structure? Is there something like folder, cabinet or drawer to keep things tidy?
I have been hearing about CouchDB & nosql dbs for a while, finally got time to dig a bit more. I chose Couch mainly because of the http api as js is my most familiar language and I can do things ...
3
votes
1answer
72 views
Can anybody help me with my coding issue regarding a dynamic array of structures in C?
#include <iostream>
#include <string>
using namespace std;
struct car
{
string make;
int year;
};
int main()
{
int n;
cin >> n;
car * pt = new car[n];
for ...
0
votes
2answers
34 views
What to name my DOM elements for CSS purposes
I'm having a very hard time assigning intelligent class names to my DOM elements.
I feel like the example below is something my CSS commonly devolves into:
<div class="article">
<div ...
0
votes
2answers
89 views
Reading file in C++ error
I have a problem with reading a text file to structure with string. It just stops working and nothing can be done.
Structure:
struct Ksiazka
{
string autor;
string ...
0
votes
3answers
51 views
Passing struct of array as reference c++
I am new to structure programming, and I find it quite confusing when trying to pass a structure of array in c++. I have a project to do for college, a Star Trek game. This is the sample code:
void ...
0
votes
1answer
63 views
Writing Structs to a file in c [closed]
Is it possible to write an entire struct to a file
example:
struct date {
char day[80];
int month;
int year;
}
0
votes
0answers
13 views
Table structure with coupons
I am currently trying to design a table that is used for coupon/serial number storage. The rules/fields I am using are below:
Fields:
account_number
coupon_code
serial_number
Rules:
An ...
0
votes
1answer
26 views
How to flush string which is in structure?
My structure:
struct Data{
char buffer[MAX_BUFF];
int bufferPos;
};
How I execute function searchFile:
searchFile(outFile, logFile, category, keyword, srcName, &dat);
In function ...
-3
votes
4answers
42 views
Structure inside a structure, nesting of structures
I have
struct node
{
int value;
struct node next;
};
If i do this i get an error field next has incomplete type
but when i declare a structure like this it works fine,
...
0
votes
1answer
24 views
how to insert duplicate keys into b trees
Please answer on b trees and not b+ trees.
I have 2 questions.
What happens when you insert duplicated keys to a b tree?
For the following input how will the b tree with t=3 look like?
...
0
votes
2answers
23 views
String wired to Case Structure always goes to Default - LabVIEW
I am trying to take the readout from an instrument and if the readout matches certain strings (from the instrument programming manual) I want to set an indicator to a specific value, different for ...
0
votes
1answer
27 views
Translate names or not
This is just a general design question. I'm designing a small app which needs to store files in a hierarchical fashion
ex:
dept/group/user1/file#1
dept/group5/user2/file#7
The usernames can have ...
0
votes
0answers
13 views
Javascript Type Model - Summary
Is this correct?
I have crafted this object oriented summary of javascript type model, submitted for your consideration. Note the use of 'B::A' to mean B derives from A (in the conventional object ...
1
vote
2answers
31 views
How to scan buffer, which is defines in structure, correctly?
This is my structure:
struct Data{
char *buffer[MAXBUFF];
int bufferSize;
};
This is how I call my function searchInFile:
searchInFile(logFile, outFile, &dat);
This is searchInFile ...
0
votes
1answer
23 views
How do I structure a command system using event in as3?
I've tried searching the answer beforehand but I don't know what keyword should I search to find what I wanted.
Here is the question.
I am trying to make a simple turn based strategy game with AS3. ...
0
votes
9answers
70 views
accessing member of structure within a class
I have an .hpp and .cpp file. I want to access the variable in the structure within a class which happens to be in the header .hpp file, in the .cpp file.
In .hpp, I have
class foo{
public:
...
0
votes
0answers
31 views
C#: Getting wrong value in the second object passed to CPP dll
I am new to C# and I am facing the following issue.I am making a call to an function exposed in a C++ DLL.The function exposed in C++ DLL expects the arguments in the following format
...
2
votes
2answers
53 views
sizeof gives a different result depending on field order
I wrote a small Console application to test the sizeof operator:
public class Program
{
public static unsafe void Main(string[] args)
{
// Native
Console.WriteLine("The size ...
0
votes
4answers
39 views
Cleaning Array without destroying structure
I want to clean my array without destroying the structure. So I want to delete the values of each element. The problem is, that the array has more dimensions.
[array]
[id] = "llll"
[innerArray]
...
0
votes
1answer
19 views
MYSQL indexing needed?
I am storing the match odds of sports matches/events in a MYSQl table.
The structure is as follows:
odds_id
match_id
outcome_id
bookmaker_id
odds
date
I can uniquely identify each row by ...
0
votes
1answer
55 views
Stripping source code of unneccessary functions
Let's say I have a complicated program created by someone else as Source because it is OpenSource. I need only a small part of it, but it seems to be interconnected.
How do I automatically strip the ...
1
vote
2answers
84 views
How to create a method of a structure in golang that is called automatically?
I have to create a something like a substitute of 2 levels of inheritance in golang, i.e.,
in a package, I have a structure(A), which is inherited(embedded as an anonymous field) by another ...
0
votes
1answer
39 views
Create an array of space ship objects using structuers
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
struct SpaceShip
{
int x_coordinate = (rand()%2000) + 1;
int y_coordinate = (rand()%2000) + 1;
...
0
votes
1answer
32 views
Structuring classes with multiple inheritance
This isn't an actual programming question, I just need advice on how to structure a part of my program.
The program is divided into a client and a server part. Both share certain code, including base ...
-3
votes
2answers
53 views
Prolog functor replacement within a structure [closed]
Need some ideas to do some functor replacement within a list of structure use a procedure replace(Structure, Results) which takes a list of structures, each of the form cat(a,b,c) with functor cat and ...
2
votes
2answers
113 views
Returning a pointer in C
this is the first time I ask here.
I just wanted to know if the "returns" of this block of code are correct, specially the first one.
tVideo* getVideo(int id, tTblVideo* table){
tVideo* ...
1
vote
2answers
65 views
Assist me in finding the error? [closed]
I am working on the interface (RS232) for communication between aeroflex gaisler hardware (RTEMS operating system and leon2 processor) and the desktop terminal. I have written a code for communication ...
-7
votes
0answers
76 views
Can you tell me why does my C program crash?
everyone!
I pasted the code below. When I run the program and select the first option in the menu, I have to add new inhabitants to a block. The program should read the data about that block from a ...
2
votes
2answers
66 views
Wrong output when popping from the stack
I have made a program using stacks, but the output which i get is kind of wrong. The output i get, has the answer i need and also has 2 values which are not expected.
Here is what i have done:
...
0
votes
0answers
59 views
Queue insertion based on condition
I am trying to insert values to a queue based on a condition. Condition is the value entered previously should be larger than the value which is going to be inserted. My problem is according to my ...
0
votes
2answers
58 views
Removing from a queue based on a condition
I have a program with a queue and i need to remove the values from the queue based on a condition. The condition is
If the value which was removed previously from the queue is more than the value ...
0
votes
1answer
29 views
what is the best way to structure a collection of days in a month (backbone calendar)
I'm trying my first backbone project and I've stumbled into this:
I have the MODEL and VIEW of the day (with events, layout, etc). What is the best to model the MONTH to contain a collection of days ...






