473,396 Members | 1,785 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,396 software developers and data experts.

error: incompatible types in assignment

I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
I am aware that the standard says it's not allowed. But I cannot
convince myself why this is prohibited.

static int ia[4] = {64, 64, 64, 64};
static char ca[4] = {'a', 'b', 'c', 'd'};
static int iaa[] = {64, 64, 64, 64};
static char caa[] = {'a', 'b', 'c', 'd'};
static char cab[] = "abcd";
static char * cac = "abcd";

char gca[7];
char gcaa[] = "hello!";

int x[4];
int * px;
int main(void){
char sgca[7];
char sgcaa[] = "hello!";
//cab = "xyz";
cab[0] = 'x';
cac = "xyz";

gca = gcaa;
//sgca = sgcaa;
// gcaa = gca;

px = &main;
}
gcc -o a ary.c
ary.c: In function `main':
ary.c:20: error: incompatible types in assignment
ary.c:24: warning: assignment from incompatible pointer type

Jul 25 '06 #1
8 24201
"fe*****@gmail.com" <fe*****@gmail.comwrote:
I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
char gca[7];
That's not a pointer.

No, it's not even a "constant pointer".

RTFFAQFFS: <http://c-faq.com/aryptr/index.html>.

Richard
Jul 25 '06 #2


fe*****@gmail.com wrote On 07/25/06 10:31,:
I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
I am aware that the standard says it's not allowed. But I cannot
convince myself why this is prohibited.
[snipped attempt to assign `array1 = array2']
An array is not a pointer. Please see Section 6 of
the comp.lang.c Frequently Asked Questions (FAQ) list

http://www.c-faq.com/

.... with special attention to Questions 6.5 and 6.7
through 6.10.

--
Er*********@sun.com

Jul 25 '06 #3

Richard Bos wrote:
"fe*****@gmail.com" <fe*****@gmail.comwrote:
I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
char gca[7];

That's not a pointer.

No, it's not even a "constant pointer".

RTFFAQFFS: <http://c-faq.com/aryptr/index.html>.

Richard
Arrays are ``second-class citizens'' in C; one upshot of this prejudice
is that you cannot assign to them.

Well, I guess it's just reiterating my confusion. Why should arrays be
second class citizens? gca does have a memory location. The value of
gca has to be stored in memory so gca[0] etc can be accessed.

Jul 25 '06 #4
fe*****@gmail.com wrote:
I have the following source code. It seems weird to me why gca's value
cannot be reassigned. It's after all a pointer and has a pointer value.
I am aware that the standard says it's not allowed. But I cannot
convince myself why this is prohibited.
gca is not a pointer. It is an array. An array is an area of memory. The
area of memory stores 7 char objects. No pointer to char is stored in
memory associated with gca.

In most cases when you use gca as an identifier in your program, the
compiler substitutes the name of the array for a pointer to the first
element. It doesn't generate code to read that pointer out of memory. It
simply writes the pointer value into the generated code, since it knows
where the array will be placed in memory.

The C standard says that the name of an array is an lvalue, but not a
modifiable lvalue. That is, you are not allowed to modify gca. You
cannot use it on the left hand side of an assignment operator.
static int ia[4] = {64, 64, 64, 64};
static char ca[4] = {'a', 'b', 'c', 'd'};
static int iaa[] = {64, 64, 64, 64};
static char caa[] = {'a', 'b', 'c', 'd'};
static char cab[] = "abcd";
static char * cac = "abcd";

char gca[7];
char gcaa[] = "hello!";

int x[4];
int * px;
int main(void){
char sgca[7];
char sgcaa[] = "hello!";
//cab = "xyz";
cab[0] = 'x';
cac = "xyz";

gca = gcaa;
//sgca = sgcaa;
// gcaa = gca;

px = &main;
px is a pointer to int.
main is a function (void) returning int.
&main is a pointer to function (void) returning int.
&main and px have incompatible types.
The assignment is a constraint violation.
}
--
Simon.
Jul 25 '06 #5
fe*****@gmail.com wrote:
Richard Bos wrote:
>"fe*****@gmail.com" <fe*****@gmail.comwrote:
>>I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
char gca[7];
That's not a pointer.

No, it's not even a "constant pointer".

RTFFAQFFS: <http://c-faq.com/aryptr/index.html>.

Richard

Arrays are ``second-class citizens'' in C; one upshot of this prejudice
is that you cannot assign to them.
Indeed.
Well, I guess it's just reiterating my confusion. Why should arrays be
second class citizens? gca does have a memory location. The value of
gca has to be stored in memory so gca[0] etc can be accessed.
Arrays are second class citizens because that's the way they are defined.

gca does have a memory location, in the same way that an int variable
has a memory location. The int variable's memory location is known to
the compiler, but it is not stored in memory.

You are attempting to do the equivalent of this:

int foo;
int bar;

&foo = &bar; /* constraint violation */

Why can't you assign to the address of foo? Foo has a (fixed) memory
location, but &foo does not have its own memory location. It's just a
value that the compiler calculated for you.

Similarly, the array gca has a memory location but its location is not
stored in memory; it is fixed. You cannot change its address.

--
Simon.
Jul 25 '06 #6

Simon Biber wrote:
fe*****@gmail.com wrote:
Richard Bos wrote:
"fe*****@gmail.com" <fe*****@gmail.comwrote:

I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
char gca[7];
That's not a pointer.

No, it's not even a "constant pointer".

RTFFAQFFS: <http://c-faq.com/aryptr/index.html>.

Richard
Arrays are ``second-class citizens'' in C; one upshot of this prejudice
is that you cannot assign to them.

Indeed.
Well, I guess it's just reiterating my confusion. Why should arrays be
second class citizens? gca does have a memory location. The value of
gca has to be stored in memory so gca[0] etc can be accessed.

Arrays are second class citizens because that's the way they are defined.

gca does have a memory location, in the same way that an int variable
has a memory location. The int variable's memory location is known to
the compiler, but it is not stored in memory.

You are attempting to do the equivalent of this:

int foo;
int bar;

&foo = &bar; /* constraint violation */

Why can't you assign to the address of foo? Foo has a (fixed) memory
location, but &foo does not have its own memory location. It's just a
value that the compiler calculated for you.

Similarly, the array gca has a memory location but its location is not
stored in memory; it is fixed. You cannot change its address.

--
Simon.
Thanks, you've made it very clear now. The key is the value of gca as a
pointer is a compiler calculated value that has no memory storage.
That's why it cannot be reassigned.

Fei

Jul 25 '06 #7
"fe*****@gmail.com" <fe*****@gmail.comwrites:
[...]
Richard Bos wrote:
"fe*****@gmail.com" <fe*****@gmail.comwrote:

I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
char gca[7];
That's not a pointer.
[...]
Thanks, you've made it very clear now. The key is the value of gca as a
pointer is a compiler calculated value that has no memory storage.
That's why it cannot be reassigned.
Right.

Just to pound on the point a bit harder, gca is an array object, not a
pointer. Arrays are not pointers, and pointers are not arrays.

What causes the confusion is that, in most contexts, an expression of
array type is implicitly converted to a pointer to its first element.
The resulting pointer is a value, not an object. It might be clearer
to say that the array expression is converted to *the address of* its
first element. (This conversion does not occur if the array
expression is the operand of a unary "&" or "sizeof" operator, or if
it's a string literal used in an initializer for an array.)

And, as you know by now, this is well explained in section 6 of the
FAQ, <http://www.c-faq.com/>.

--
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.
Jul 25 '06 #8
On 25 Jul 2006 07:31:43 -0700, in comp.lang.c , "fe*****@gmail.com"
<fe*****@gmail.comwrote:
>I have the following source code. It seems wierd to me why gca's value
cannot be reassigned. It's afterall a pointer and has a pointer value.
NO. Pointers are not arrays, and arrays are not pointers.
Arrays are blocks of memory.
Pointers are addresses of memory.

A house is not an address, or vice versa.

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 25 '06 #9

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

Similar topics

7
by: Brian Stubblefield | last post by:
Dear clc members, I am new to C and am posting several messages concerning a large C program that I am debugging. I am encountering a "incompatible types in assignment" warning for the...
2
by: Dennis Schulz | last post by:
Hi all, the following programm is supposed to check for login and password with inbuilt linux functions. in line 57 and 64 there are erorrs: incompatible types in asignment. whats wrong with...
4
by: John Doe | last post by:
segmentation error !!!! hi guys , i wrote this program to multiply two matrices (just the basic code without checkin 4 the condition n==p ) " #include<stdio.h> main() { int a,b,c; int...
13
by: william | last post by:
code segment: long int * size; char entry; ............. size=&entry; ************************************* Gcc reported 'assignment of incompatible pointer type'.
4
by: lovecreatesbea... | last post by:
Gcc only gives out a warning: `assignment discards qualifiers from pointer target type' against code such as following: $ type a.c int main(void) { const char *pc; char *p = pc;
10
by: MisterE | last post by:
typedef struct sg { int a; } G; int c(G* g) { return g->a; }
6
by: billiabon | last post by:
Hello,everybody! I need your help! My problem is this assignment char pnm; void enqueue(int pd,char pnm,int pnum,int ptm,struct queue *z) {struct node *p; p=(struct node...
6
by: fishwater00 | last post by:
Question 1: typedef struct { int x, y, z ; float *wave; float *velocity; }Model; void a(Model *domain); void b(Model *domain, int t);
5
by: happytoday | last post by:
I compiled that program under turbo C without any problems but with sunstudi I found those errors: "pnt02ma1.c", line 37: warning: implicit function declaration: system "pnt02ma1.c", line 58:...
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: 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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
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...
0
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...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.