473,770 Members | 4,544 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

multi dimension array initialization using pointers

Hi,

I'm attempting to understand the use of pointers(at least grasp how
pointers work). I've read the FAQ on
http://www.eskimo.com/~scs/C-faq/s6.html on pointers and arrays but I'm
still a bit lost.

I written the following code to try to understand it but it's not
working:

#include <stdio.h>
#include <ctype.h>

#define MAXROW 2
#define MAXCOL 5

void init_array(char *data[MAXROW]);
void print_array(cha r *data[MAXROW]);
int main ()
{
char *array_ptr[MAXROW];

init_array(arra y_ptr);
print_array(arr ay_ptr);
return 0;
}

void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
(data[row] + col) = '\0';
}
}
}

void print_array(cha r *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
printf("%c",*(d ata[row] + col));
}
}
printf("\n");
}

When I try to compile it with gcc, there is a warning
a3.c: In function `init_array':
a3.c:29: invalid lvalue in assignment

Can anyone tell me what the warning means ?
What I am doing wrong ?

Nat

Nov 15 '05 #1
12 4754
na****@yahoo.co m.au wrote:

Hi,

I'm attempting to understand the use of pointers(at least grasp how
pointers work). I've read the FAQ on
http://www.eskimo.com/~scs/C-faq/s6.html on pointers and arrays but I'm
still a bit lost.

I written the following code to try to understand it but it's not
working:

#include <stdio.h>
#include <ctype.h>

#define MAXROW 2
#define MAXCOL 5

void init_array(char *data[MAXROW]);
void print_array(cha r *data[MAXROW]);

int main ()
{
char *array_ptr[MAXROW];

init_array(arra y_ptr);
print_array(arr ay_ptr);
return 0;
}

void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
(data[row] + col) = '\0';
}
}
}

void print_array(cha r *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
printf("%c",*(d ata[row] + col));
}
}
printf("\n");
}

When I try to compile it with gcc, there is a warning
a3.c: In function `init_array':
a3.c:29: invalid lvalue in assignment

Can anyone tell me what the warning means ?
What I am doing wrong ?


/* BEGIN new.c */

#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>

#define MAXROW 2
#define MAXCOL 5

void init_array(char **data);
void print_array(cha r **data);
void free_array(char **data);

int main (void)
{
char *array_ptr[MAXROW];

init_array(arra y_ptr);
print_array(arr ay_ptr);
free_array(arra y_ptr);
return 0;
}

void init_array(char **data)
{
int row;

for (row = 0; row < MAXROW; row++) {
data[row] = malloc(MAXCOL);
if (data[row] == NULL) {
puts("malloc");
exit(EXIT_FAILU RE);
}
assert(MAXCOL >= sizeof "data");
strcpy(data[row], "data");
}
}

void print_array(cha r **data)
{
int row;

for (row = 0; row < MAXROW; row++) {
fputs(data[row], stdout);
}
putchar('\n');
}

void free_array(char **data)
{
int row;

for (row = 0; row < MAXROW; row++) {
free(data[row]);
}
}

/* END new.c */
--
pete
Nov 15 '05 #2
On 8 Oct 2005 00:02:35 -0700
na****@yahoo.co m.au wrote:
#define MAXROW 2
#define MAXCOL 5
Why not const int MAXROW = 2; ?
void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
(data[row] + col) = '\0';
This won't work. Should be:
data[row + col] = '\0';
}
}
}
data's got 5 (0..4) char* elements. You are trying to access elements
0..9 in this for loop, which of course won't work out well.

Same in here:
void print_array(cha r *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
printf("%c",*(d ata[row] + col));
This won't work. Should be:
printf("%c",dat a[row + col]);
}
}
printf("\n");
}


Either change your array declaration to char *array_ptr[MAXROW*MAXCOL];
or leave the second for-loops out.

BTW: void print_array(cha r *data[MAXROW]) is really bad style. You
should rather supply the number of elements in the array as the second
argument: void print_array(cha r **data, int elements)
Call with print_array(dat a, MAXCOL*MAXROW);

best regards / Gruß
Moritz Beller
--
web http://www.4momo.de
mail momo dot beller at t-online dot de
gpg http://gpg.notlong.com
Nov 15 '05 #3
Moritz Beller wrote:
On 8 Oct 2005 00:02:35 -0700
na****@yahoo.co m.au wrote:
#define MAXROW 2
#define MAXCOL 5


Why not const int MAXROW = 2; ?


Because in C, const does not generate compile time constants.
So, for pre-C99 C, you cannot use it for array sizes at
declaration. Or case labels.
You are talking about another language, maybe C++.

Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 15 '05 #4
I tried the suggestion of using data[row + col] in both functions but
when compiling, I now get an message in the init_array function,

warning: assignment makes pointer from integer without a cast

void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
data[row + col] = '\0';
}
}
}

I had also tested changing my array declaration to
char *array_ptr[MAXROW*MAXCOL]but the same warning comes up.

But when I use data[row][col] instead of (data[row] + col) or data[row
+col] it works.
I'm more confused.
So when does the pointers "bits and pieces" get used in the function ??
Nat

Nov 15 '05 #5
Please quote a sufficient amount of context -- it is not guaranteed
that people see any other message from this thread before this one.
Also, this was Moritz Beller's suggestion, not mine.

na****@yahoo.co m.au wrote:
I tried the suggestion of using data[row + col] in both functions but
when compiling, I now get an message in the init_array function,

warning: assignment makes pointer from integer without a cast

void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
data[row + col] = '\0';
You have to pass an array of char, not an array of pointers to
char. data is of the wrong type for that. If you have a parameter
char *data (instead of char *data[MAXROW])for the function and
data points to a storage area of at least MAXROW*MAXCOL bytes, then
data[row*MAXCOL + col] = '\0';
may be what you are looking for.
}
}
}

I had also tested changing my array declaration to
char *array_ptr[MAXROW*MAXCOL]but the same warning comes up.
See above.
But when I use data[row][col] instead of (data[row] + col) or data[row
+col] it works.
I'm more confused.
So when does the pointers "bits and pieces" get used in the function ??


a[i] is effectively a+i, so the former two are the same. The latter,
though, cannot be true.
However, without context I am too lazy trying to guess what you
originally wanted to achieve and thus cannot help you with your
problem.
-Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 15 '05 #6
On 8 Oct 2005 04:43:42 -0700
na****@yahoo.co m.au wrote:
But when I use data[row][col]


This could compile, but will usually seg fault! You cannot assign
anything but an array of chars to data[row]! data[row][col] = '\0';
will not work at all, as long as you don't have an array assigend to
data[row], whose size is at least col+1!

I give you an exmaple to understand things easier: You declare data to
be a one-dimensional array of type char*! It's not a multidimensiona l
array after all! So data[0] is effectivley pointing to a pointer to
char.

You virtually assgin data[0][n] in the for loop, thereby dereferencing
this very pointer. You cannot assign data[0][n] with a character,
though, as it's at this moment just a pointer of char that you have
declared. This pointer should usually point to another array of char!
Then (as mentioned above) data[0][n] is entriley valid.

(data[row] + col) or data[row+col] are all just de-referencing once.
When being printed, they should return the whole string (*(test + row *
col) is equal to data[row]).

If that's what you are trying to achieve, then declare char
*array_ptr[MAXROW] to be char *array_ptr[MAXROW][MAXCOL] and your
program will perhaps work.

data[row + col] = '\0'; ->
**(data + row * col) = '\0'; or, yet easier:
data[row][col]

best regards / Gruß
Moritz Beller
--
web http://www.4momo.de
mail momo dot beller at t-online dot de
gpg http://gpg.notlong.com
Nov 15 '05 #7
On 8 Oct 2005 00:02:35 -0700, na****@yahoo.co m.au wrote:
Hi,

I'm attempting to understand the use of pointers(at least grasp how
pointers work). I've read the FAQ on
http://www.eskimo.com/~scs/C-faq/s6.html on pointers and arrays but I'm
still a bit lost.

I written the following code to try to understand it but it's not
working:

#include <stdio.h>
#include <ctype.h>

#define MAXROW 2
#define MAXCOL 5

void init_array(char *data[MAXROW]);
void print_array(cha r *data[MAXROW]);
int main ()
{
char *array_ptr[MAXROW];
array_ptr is an array of MAXROW pointers to char. If we assume for
discussion that a pointer to char is 4 bytes, then you have a block of
memory MAXROW*4 bytes long reserved for this array. However, these
bytes are not initialized. Their value is indeterminate.
Colloquially, none of the pointers actually point anywhere yet because
they have not been initialized.

init_array(arra y_ptr);
Normally, evaluating an initialized object would cause undefined
behavior. However, an expression of type array has the special
property that in most contexts, including this one, evaluating the
expression produces a value equal to the address of the first element
with type pointer to element type. So the use of array_ptr here is
well defined and exactly equivalent to &array_ptr[0].
print_array(arr ay_ptr);
return 0;
}

void init_array(char *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
(data[row] + col) = '\0';
Here is where you get into trouble. Consider the iteration when row
is 0.

data[0] is the first pointer in array_ptr from main. You never
initialized this pointer to point anywhere. Attempting to evaluate an
indeterminate value invokes undefined behavior.

Consider the code segment
int i;
i = i + 1;
Because i is not initialized, there is no previous value to add 1 to
and this invokes the same undefined behavior. However, with either
int i = 5;
i = i + 1;
or
int i;
i = 5;
...
i = i + 1;
there is a previous value of i to add 1 to and both result in i having
the value 6.

The same situation is true for you pointer. In order for this
expression to evaluate properly, you must first assign it a value. In
this case, that value must be the address of a char. Since you intend
to use this pointer to reference a row of the matrix, it needs to
point to the first of a sequence MAXCOL char. There are two common
approaches for this:

One is to allocate space dynamically:
data[0] = malloc(MAXCOL * *data[0]);

The other is to define an array of char and use the address of
the array:
char row0[MAXCOL];
...
data[0] = row0;

Now that data[0] evaluates properly, we address the rest of the
expression. On the first iteration, col is also 0. data[0] has type
pointer to char and 0 has type int so this is an example of pointer
arithmetic. The expression evaluates to the address 0 bytes past the
char that data[0] points to and has type pointer to char.

So your are attempting to assign the character '\0' (which is
really an int) to an l-value that has type pointer. Normally,
attempting to assign an int to a pointer is a syntax error and would
result in a diagnostic about incompatible types. However, any integer
expression that evaluates to 0, as '\0' does, is recognized as a valid
NULL pointer constant which can be assigned to a pointer to char.

So while you don't have that syntax error, this would not do what
you want. The error message you receive is telling you that the
expression on the left of your assignment statement is not acceptable
as the recipient of a value. You want to assign the character '\0' to
the char that your pointer expression points to. To do this, you need
to dereference the pointer because you want to manipulate the object
it points to.

The dereference operator (*) would work
*(data[row] + col) = '\0';
but the normal C idiom for this is
data[row][col] = '\0'; }
}
}

void print_array(cha r *data[MAXROW])
{
int row, col;

for (row=0; row<MAXROW; row++)
{
for (col=0; col<MAXCOL; col++)
{
printf("%c",*(d ata[row] + col));
You have used the dereference operator properly here.

If you correct the problems with array_ptr not being initialized
properly, you will still have a problem printing this way. Your
entire matrix is filled with '\0'. This is normally not a printable
or displayable character. Attempting to print it with %c will prove
very unsatisfactory.

You could print it with %d (and get 0) or you could choose to
initialize the matrix with printable characters.
}
}
printf("\n");
You probably want this up one line so it executes at the end of every
row and not just at the end of the matrix.
}

When I try to compile it with gcc, there is a warning
a3.c: In function `init_array':
a3.c:29: invalid lvalue in assignment
(data[row]+col) does not define an object that can receive a value.

Can anyone tell me what the warning means ?
What I am doing wrong ?

Nat

<<Remove the del for email>>
Nov 15 '05 #8
na****@yahoo.co m.au writes:
Hi,

I'm attempting to understand the use of pointers(at least grasp how
pointers work). I've read the FAQ on
http://www.eskimo.com/~scs/C-faq/s6.html on pointers and arrays but I'm
still a bit lost.

I written the following code to try to understand it but it's not
working:

#include <stdio.h>
#include <ctype.h>

#define MAXROW 2
#define MAXCOL 5

void init_array(char *data[MAXROW]);
void print_array(cha r *data[MAXROW]);

[snip]

These function declaration are likely to cause confusion. They appear
to declare data as an array parameter, of type "array 10 of pointer to
char", but in fact C doesn't have array parameters. Since array names
are implicitly converted to pointers in most contexts, the language
allows you to declare something that *appears* to be an array
parameter, but it's adjusted to be a pointer parameter. The MAXROW
between the brackets is ignored.

It's better to declare your functions as

void init_array(char *data[]);
void print_array(cha r *data[]);

or even as

void init_array(char **data);
void print_array(cha r **data);

--
Keith Thompson (The_Other_Keit h) 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 15 '05 #9
Thank you everyone for explaining pointer usage to a C newbie. The in
depth explanation of where my simple code was wrong has been extremely
helpful.

Following the suggestions made, I changed the way I declared my
function, allocated an initial block of memory, used deferencing
operator correctly and everything works.

Nat

Nov 15 '05 #10

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

Similar topics

2
7672
by: ip4ram | last post by:
I used to work with C and have a set of libraries which allocate multi-dimensional arrays(2 and 3) with single malloc call. data_type **myarray = (data_type**)malloc(widht*height*sizeof(data_type)+ height* sizeof(data_type*)); //allocate individual addresses for row pointers. Now that I am moving to C++,am looking for something by which I can
6
2234
by: Adam Hartshorne | last post by:
The input to a function of a 3rd party library I want to use requires a double**, which is a multi-dimension array of doubles. I have looked on the net etc and seen several ways of supposedly doing this, but I don't seem to be able to get them to work. I was wondering if anybody can tell me what I am doing wrong. int rows = 10 ; int cols = 10 ;
8
2252
by: masood.iqbal | last post by:
All this time I was under the illusion that I understand the concept of multi-dimensional arrays well ---- however the following code snippet belies my understanding. I had assumed all along that a declaration like: int intArray means that there is an array of pointers to int with a size of 5, each of whose elements is an array of int with a size of 3. This definition seemed intuitive to me since a declaration like
11
4469
by: truckaxle | last post by:
I am trying to pass a slice from a larger 2-dimensional array to a function that will work on a smaller region of the array space. The code below is a distillation of what I am trying to accomplish. // - - - - - - - - begin code - - - - - - - typedef int sm_t; typedef int bg_t; sm_t sm; bg_t bg;
3
2545
by: Eric Laberge | last post by:
Aloha! I've been reading the standard (May '05 draft, actually) and stumbled across this: 6.7.1 Initialization §20 "If the aggregate or union contains elements or members that are aggregates or unions, these rules apply recursively to the subaggregates or contained unions. If the initializer of a subaggregate or contained union begins with a left brace, the initializers enclosed by that brace and its matching right brace initialize the...
11
5086
by: natkw1 | last post by:
Hi, I'm new to C so hopefully someone can give me some guidance on where I've gone wrong. I've written the following code, trying to initialize the multi-dim array but it's not working: #include <stdio.h> #include <ctype.h>
4
3133
by: chy1013m1 | last post by:
I am slightly confused as to how to reference multi-dimensional array with pointers. I've tried the following code, and I was able to reference 33 as pptr int multi = {{11,27,33}, {12,13,14}}; int (*pptr) = multi; I know that int (*pptr) reads : pptr is a pointer to an array of 3 ints, so does it mean it is a
17
2396
by: DiAvOl | last post by:
Hello everyone, merry christmas! I have some questions about the following program: arrtest.c ------------ #include <stdio.h> int main(int agc, char *argv) {
152
9905
by: vippstar | last post by:
The subject might be misleading. Regardless, is this code valid: #include <stdio.h> void f(double *p, size_t size) { while(size--) printf("%f\n", *p++); } int main(void) { double array = { { 3.14 }, { 42.6 } }; f((double *)array, sizeof array / sizeof **array); return 0;
0
9591
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10228
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10057
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10002
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7415
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3970
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3575
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.