473,395 Members | 2,798 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,395 software developers and data experts.

Pointer incompatible type assignment to character.

I have something like this:

#include <stdio.h>

main ()
{
struct line
{
char write[20];
char read[20];

struct line *next;
};

struct line n1;

n1.write= "concepts";

}

However, if i try to compile it, i get a compiler error saying that
"incompatible types in assignment". Whats strange is that if i set
write as an integer, i don't get such a error and it compiles. Does
something special need to be done with character strings and pointers?

Thanks.
Apr 19 '06 #1
10 4073
gk245 wrote:
I have something like this:

#include <stdio.h>

main ()
{
struct line
{
char write[20];
char read[20];

struct line *next;
};

struct line n1;

n1.write= "concepts";

}

However, if i try to compile it, i get a compiler error saying that
"incompatible types in assignment". Whats strange is that if i set
write as an integer, i don't get such a error and it compiles. Does
something special need to be done with character strings and pointers?

They are different. You have declared write as an array of 20 char and
you are attempting to assign a pointer to const char to it.

I think you are confused regarding accessing an array through a pointer
and assigning to an array. You have to copy the string literal into the
array.

--
Ian Collins.
Apr 19 '06 #2
On Wed, 19 Apr 2006 19:01:27 -0400, gk245 <to*****@mail.com> wrote:
I have something like this:

#include <stdio.h>

main ()
{
struct line
{
char write[20];
char read[20];

struct line *next;
};

struct line n1;

n1.write= "concepts";

}


This is probably the usual confusion around arrays and pointers. You
cannot treat an array "as if" it was a pointer in the left part of an
assignment. Array names "decay" to pointers (to their first element)
when they are in the right part of an assignment, but the reverse is not
true.

You will have to use strncpy() or strlcpy() to copy the data from your
constant string into the array member of the structure, i.e. with:

size_t len;

len = sizeof(n1.write);
strncpy(n1.write, "concepts", len - 1);
n1.write[len - 1] = '\0';

or

strlcpy(n1.write, "concepts", sizeof(n1.write));

Apr 19 '06 #3
gk245 <to*****@mail.com> writes:
I have something like this:

#include <stdio.h>

main ()
{
struct line
{
char write[20];
char read[20];

struct line *next;
};

struct line n1;

n1.write= "concepts";

}

However, if i try to compile it, i get a compiler error saying that
"incompatible types in assignment". Whats strange is that if i set
write as an integer, i don't get such a error and it compiles. Does
something special need to be done with character strings and pointers?


<http://www.c-faq.com/>. Read all of section 6, "Arrays and Pointers".

--
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.
Apr 19 '06 #4
Keith Thompson formulated on Wednesday :
gk245 <to*****@mail.com> writes:
I have something like this:

#include <stdio.h>

main ()
{
struct line
{
char write[20];
char read[20];

struct line *next;
};

struct line n1;

n1.write= "concepts";

}

However, if i try to compile it, i get a compiler error saying that
"incompatible types in assignment". Whats strange is that if i set
write as an integer, i don't get such a error and it compiles. Does
something special need to be done with character strings and pointers?


<http://www.c-faq.com/>. Read all of section 6, "Arrays and Pointers".


Thx for the link and the help guys. ^^
Apr 20 '06 #5
> This is probably the usual confusion around arrays and pointers. You
cannot treat an array "as if" it was a pointer in the left part of an
assignment. Array names "decay" to pointers (to their first element)
when they are in the right part of an assignment, but the reverse is not
true.


Okay, I'm confused. Then how come something like this works.

include <stdio.h>
#define BUF 6

int main(void) {
char arr[BUF] = "la";

printf("the value is: %s\n", arr);

return 0;
}
Chad

$gcc -Wall arr.c -o arr
$./arr
the value is: la
But something like this:

include <stdio.h>
#define BUF 6

int main(void) {
int arr[BUF] = "la";

printf("the value is: %s\n", arr);

return 0;
}
produces
$gcc -Wall arr.c -o arr
arr.c: In function `main':
arr.c:5: error: invalid initializer
arr.c:7: warning: char format, different type arg (arg 2)

Apr 20 '06 #6
> This is probably the usual confusion around arrays and pointers. You
cannot treat an array "as if" it was a pointer in the left part of an
assignment. Array names "decay" to pointers (to their first element)
when they are in the right part of an assignment, but the reverse is not
true.


Okay, I'm confused. Then how come something like this works.
#include <stdio.h>
#define BUF 6

int main(void) {
char arr[BUF] = "la";

printf("the value is: %s\n", arr);

return 0;

}
$gcc -Wall arr.c -o arr
$./arr
the value is: la

But something like this:

#include <stdio.h>
#define BUF 6

int main(void) {
int arr[BUF] = "la";

printf("the value is: %s\n", arr);

return 0;

}

produces
$gcc -Wall arr.c -o arr
arr.c: In function `main':
arr.c:5: error: invalid initializer
arr.c:7: warning: char format, different type arg (arg 2)

Chad

Apr 20 '06 #7
Integer arrays cannot be assigned strings, you can assign one character
at a time to the array--

like arr[0]='l';
arr[1]='a';

Because when characters are assigned to integers, theri ascii value
gets transferred, but the ascii value of strings cannot be calculated.

Apr 20 '06 #8
Chad wrote:
Array names "decay" to pointers (to their first element) when they
are in the right part of an assignment, but the reverse is not true.
Okay, I'm confused. Then how come something like this works.

char arr[BUF] = "la";


This is not an assignment; it is an initialization. Some
programming languages use a different symbol for initialization
than they do for assignment. But C uses the equals sign for both.

In the initialization case, it means that "la" is an initializer for
arr. The C standard defines specifically that arrays of char can
be initialized from string literals.
int arr[BUF] = "la";


Other arrays can only be initialized by an initializer list, eg:
int arr[BUF] = { 1, 2 };

The case of initializing from a string literal is only for arrays of
char.

Apr 20 '06 #9
Groovy hepcat Ian Collins was jivin' on Thu, 20 Apr 2006 11:06:02
+1200 in comp.lang.c.
Re: Pointer incompatible type assignment to character.'s a cool scene!
Dig it!
gk245 wrote:
struct line
{
char write[20];
char read[20];
struct line *next;
};

struct line n1;

n1.write= "concepts";

[Snipage.]
They are different. You have declared write as an array of 20 char and
you are attempting to assign a pointer to const char to it.


No, he's trying to assign a pointer to char to it. There is no const
qualification on a string literal. It's not modifiable, but not const
qualified either.

--

Dig the even newer still, yet more improved, sig!

http://alphalink.com.au/~phaywood/
"Ain't I'm a dog?" - Ronny Self, Ain't I'm a Dog, written by G. Sherry & W. Walker.
I know it's not "technically correct" English; but since when was rock & roll "technically correct"?
Apr 22 '06 #10
Groovy hepcat sw************@gmail.com was jivin' on 19 Apr 2006
20:54:38 -0700 in comp.lang.c.
Re: Pointer incompatible type assignment to character.'s a cool scene!
Dig it!
Integer arrays cannot be assigned strings, you can assign one character
at a time to the array--

like arr[0]='l';
arr[1]='a';

Because when characters are assigned to integers, theri ascii value
gets transferred, but the ascii value of strings cannot be calculated.


What on Earth are you talking about? Without seeing any quoted text,
it's hard to know what you're trying to say; especially when what
you've written is unclear in itself.
Now, as to what you said, it's bunk. An array of char is an "integer
array", since char is an integer type. And you certainly can
initialise an array of char with a string literal. And EBCDIC based
implementations don't use ASCII. Nor do implementations that use other
non-ASCII character sets. And just what is "the ascii value of
strings" supposed to mean? Do you mean the values of the characters in
a string? Why would you want to calculate their values? You can,
though, should the need arise.

--

Dig the even newer still, yet more improved, sig!

http://alphalink.com.au/~phaywood/
"Ain't I'm a dog?" - Ronny Self, Ain't I'm a Dog, written by G. Sherry & W. Walker.
I know it's not "technically correct" English; but since when was rock & roll "technically correct"?
Apr 22 '06 #11

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

Similar topics

2
by: Morten V Pedersen | last post by:
Hi all, I'm using the following code, but there's a problem somewhere. // Typedef af 8 arrays af 7 pointere til ints #include <iostream> using namespace std; int main()
6
by: Irrwahn Grausewitz | last post by:
Hey, y'all. While doing some pointer experiments I encountered a problem. I know that I know the answer already, but trying to remember I just screwed up my mind. I wonder if someone would be...
3
by: joe bruin | last post by:
hello all. i am trying to get rid of some warnings and do "the right thing". although in this particular case, i am not sure what the right thing is. the code: typedef struct {
49
by: elmar | last post by:
Hi Clers, If I look at my ~200000 lines of C code programmed over the past 15 years, there is one annoying thing in this smart language, which somehow reduces the 'beauty' of the source code...
13
by: william | last post by:
code segment: long int * size; char entry; ............. size=&entry; ************************************* Gcc reported 'assignment of incompatible pointer type'.
23
by: =?iso-8859-1?q?Santiago_Urue=F1a?= | last post by:
Hi, I tried to return a pointer to a constant string, but the compiler gives the following warning if a cast is not used: warning: assignment from incompatible pointer type This is the code:
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;
20
by: MikeC | last post by:
Folks, I've been playing with C programs for 25 years (not professionally - self-taught), and although I've used function pointers before, I've never got my head around them enough to be able to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.