0
votes
7answers
131 views
C - how to check whether all required fields of a structure are filled? (most elegant method)
I have a function, which has a pointer to some structure as its argument. How can I check within this function, whether all required fields of the structure have been filled before …
2
votes
1answer
50 views
jsp:how to hide folder structure of website from users?
how to hide folder structure of website from users.
i have developed a website on jave platform (jsp).
website is deployed on jboss.
suppose my website 's home page url is
dummy …
2
votes
1answer
66 views
MATLAB: Determine total length/size of a structure array with fields as structure arrays
I have a structure array containing fields as structure arrays of varying length. For example:
's' is a structure
'data' is a field in 's', and also a structure array itself
and
…
0
votes
0answers
14 views
how to implement trie data structure using c for the identification of sets?
here we should write a program to implement the identification of sets(object sets containing strings not in an alphabetical order) which makes basically use of tries.
0
votes
2answers
35 views
How can I display an organized hierarchical data in asp.net 3.5?
Hi,
I am working on a project that organizes the structure and hierarchy of departments. I want to view and display the whole structure of the organization visually, but I am stuck …
0
votes
2answers
74 views
Access function pointer defined in a structure?
Write a program to access the function "foo" using the structure structure2.
typedef struct
{
int *a;
char (*fptr)(char*);
}structure1;
typedef struct
{
int x;
struct …
0
votes
5answers
126 views
Pointers to Structures in C
When trying to compile the following code, I am getting a warning that line 18 makes integer from pointer without cast and that 19 and 20 are incompatible types in assignment. I a …
0
votes
2answers
32 views
How can I ignore a field when marshalling a structure with P/Invoke
Hi,
I want to marshal a structure for use with P/Invoke, but this struct contains a field that is only relevant to my managed code, so I don't want it to be marshaled since it doe …
1
vote
7answers
141 views
How Is The Structure Of a Image
Hello,
I'm thinking to build a library to manipulate images(my own image type that I will develop), but first I need to understand the structure of a image
How it is mounted?
Ab …
0
votes
7answers
152 views
table like java data structure
hi.
I need to implement some kind table-like data structure that stores info like this in Java:
+--------+-------+-----+
| sij | i | j |
+--------+-------+-----+
| 45 …
1
vote
4answers
54 views
What Is The Structure Of a XPS File
As I think, XPS files are like PDF files, but what is the structure od a XPS file? It's like PDF files?
1
vote
9answers
216 views
Why is DateTime a structure in .Net?
Why is DateTime a structure instead of an inheritable class?
(I would like to be able to override the ToString() method but I can't.)
2
votes
7answers
161 views
Parsing variable length descriptors from a byte stream and acting on their type
I'm reading from a byte stream that contains a series of variable length descriptors which I'm representing as various structs/classes in my code. Each descriptor has a fixed lengt …
2
votes
5answers
78 views
Does storing a lot of images in a single directory slow down image retrieval?
If i have a site where users can upload as many images as they want(think photobucket-like), what is the best way to set up file storage (also, all uploads get a unique random time …
0
votes
5answers
66 views
Doubt regarding de-referencing structure pointers. Please explain
I am compiling this piece of code and I get compliation errors saying " dereferencing pointer to incomplete type" .
I get the errors for the last print statement and before that w …
