473,379 Members | 1,491 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

Returning structs containing arrays

It's the first time I try using structs, and I'm getting confused with
it and can't make it work properly

I firstly define the structure by this : typedef struct { char *l1; int
*l2; int Nval; } *arrays;

It's supposed to be a structure containing an array of chars, an array
of ints and an int.

I declare functions like this : arrays *parseline(char *line, int N)

and I point to the arrays I want to return like this :

out.l1=displayln;
out.l2=sumline;
out.Nval=Nval;
return out;

When compiling it gives me an error, such as "error: request of member
<< l1 >> in something that's not a structure or an union". What's wrong
with the way I do it and how should I fix it?

Nov 20 '05 #1
3 2806
Michel Rouzic wrote:

It's the first time I try using structs,
and I'm getting confused with
it and can't make it work properly

I firstly define the structure by this :
typedef struct { char *l1; int *l2; int Nval; } *arrays;

It's supposed to be a structure containing an array of chars,
an array of ints and an int. I declare functions like this : arrays *parseline(char *line, int N) out.l1=displayln;
out.l2=sumline;
out.Nval=Nval;
return out; and how should I fix it?


struct arrays {
char c_array[l1];
int i_array[l2];
int Nval;
};

#include <string.h>

struct arrays out;

memcpy(out.c_array, displayln, sizeof out.c_array);
memcpy(out.i_array, sumline, sizeof out.i_array);
out.Nval = Nval;
return out;
.... or sizeof the source object, whichever is smaller.
If displayln is the name of a smaller array then

memcpy(out.c_array, displayln, sizeof displayln);

If displayln is the name of a pointer
to the first element of a smaller array
then you have figure something out.
Likewise for out.i_array.

--
pete
Nov 20 '05 #2
Michel Rouzic wrote:
It's the first time I try using structs, and I'm getting confused with
it and can't make it work properly

I firstly define the structure by this : typedef struct { char *l1; int
*l2; int Nval; } *arrays; ^^^
The * says pointer, why put it there?

Also, l1 and l2 are pore choices for names, since they look too much
like 11 and 12.
It's supposed to be a structure containing an array of chars, an array
of ints and an int.
Well, what you have specified is pointer to char and pointer to int. I
suggest you reread what your text books say about arrays, pointers and
declarations of them.
I declare functions like this : arrays *parseline(char *line, int N)

and I point to the arrays I want to return like this :

out.l1=displayln;
out.l2=sumline;
out.Nval=Nval;
return out;

When compiling it gives me an error, such as "error: request of member
<< l1 >> in something that's not a structure or an union". What's wrong
with the way I do it and how should I fix it?


Quick answer, remove the extraneous *. Although I'll bet that leaves you
with lots of other problems. See my comments above.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Nov 20 '05 #3
"Michel Rouzic" <Mi********@yahoo.fr> writes:
It's the first time I try using structs, and I'm getting confused with
it and can't make it work properly

I firstly define the structure by this : typedef struct { char *l1; int
*l2; int Nval; } *arrays;
Which is much more legible like this:

typedef struct {
char *l1;
int *l2;
int Nval;
} *arrays;
It's supposed to be a structure containing an array of chars, an array
of ints and an int.
Your structure type doesn't *contain* an array of anything. It
contains two pointers and an integer. The pointers might point to
arrays if you initialize them to point to allocated memory.

The typedef "arrays" doesn't name a structure type; it names a
pointer-to-structure type. You haven't provided a name for the
structure type.

You should consider dropping the typedef altogether and just using
the structure tag directly, something like:

struct arrays {
char *l1;
int *l2;
int Nval;
};

You would then refer to the type as "struct arrays" rather than
"arrays". The typedef saves you the effort of typing "struct", but
that's really not much of a benefit; your code is clearer if it's
obvious that the type is a structure. (There are rare cases where you
might want to hide the nature of the type; this isn't likely to be one
of them.)

You should also choose better names. Flash Gordon has already
mentioned that l1 and l2 are easily confused with 11 and 12. The name
"arrays" could also be improved. Using a plural name for a single
object causes confusion; would an array of them be called "arrayses"?
And it's a structure, not an array. Pick a name that reflects what
it's used for, perhaps "struct line" or "struct line_info".
I declare functions like this : arrays *parseline(char *line, int N)
Given your original declaration, that would return a
pointer-to-pointer-to-structure. You seem to be throwing in '*'s
almost at random. Don't make something a pointer unless you have a
specific reason. (In fact, don't do *anything* unless you have a
specific reason.)

You can just return a structure directly:
arrays parseline(char *line, int N);
or
struct line_info parse_line(char *line, int n);
All-caps names are usually used for macros. Underscores are usually
used to separate words in identifiers; "parseline" is too easy to read
as a nonexistent 3-syllable word.
and I point to the arrays I want to return like this :

out.l1=displayln;
out.l2=sumline;
out.Nval=Nval;
return out;


struct line_info parse_line(char *line, int n)
{
struct line_info result;
...
result.l1 = something;
result.l2 = something_else;
result.Nval = something_else_again;
...
return result;
}

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Dave A | last post by:
The following C code specifies the interface into a DLL. I need to access it from C#. How do I do declare it? I have done simple ones before but this particular API requires a pointer to a struct...
7
by: Rennie deGraaf | last post by:
A question regarding this code, which defines a struct containing a size and a variable-sized array: typedef struct { uint16_t count; unsigned char bytes; } foo_t; ....
5
by: Paminu | last post by:
Why make an array of pointers to structs, when it is possible to just make an array of structs? I have this struct: struct test { int a; int b;
17
by: I.M. !Knuth | last post by:
Hi. I'm more-or-less a C newbie. I thought I had pointers under control until I started goofing around with this: ...
1
by: CapMaster | last post by:
I've found some programs of how to create a standard game of blackjack on C++. But how would you do it using structs? Here is my assignment: Problem Statement: The purpose of this project is to...
4
by: =?Utf-8?B?a2lzaG9y?= | last post by:
Hi, has any one used webservices for returning custom objects other than datasets like custom classes and their internal classes ?. What problems you have faced if any ? is there any limitation...
7
by: aemado | last post by:
I am trying to write a program that reads in data from a user-specified file. I have to sort this file two ways, one using parallel arrays and the other using structs. I then have to output the...
2
by: =?Utf-8?B?U2V0aEluTUk=?= | last post by:
I am a total newb at .net, and I have not been able to search out a best practice answer to what must be a common problem. My app must process binary data from a UDP socket, a MSMQ queue and a...
160
by: DiAvOl | last post by:
Hello everyone, Please take a look at the following code: #include <stdio.h> typedef struct person { char name; int age; } Person;
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.