LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 10-07-2004, 03:33 PM   #1
The_Dish
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Rep: Reputation: 0
GCC Compilation Errors


I've created a linked list to store user data as part of a simple messenger program in C.

I'm recieiving two errors that seem simple but I'm overlooking the answer for whatever reason.

I declare a new linked list node and malloc space for it:

node *newHead;
newHead = malloc(sizeof(node));

and gcc gives a warning:assignment makes pointer from integer without a cast.

Any ideas about that one?

I also have another line, just below the previous one where I'm setting the value of a string within my node structure:

newHead->status = "Free";

and gcc gives a warning: assignment makes integer from pointer without a cast.

The structure member "status" is of type char, if that helps.

I've been away from C for like 8 months so I'm a little rusty and not that good anyways... can anybody help me?

Thanks.
The_Dish
 
Old 10-07-2004, 04:56 PM   #2
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
Are you maybe compiling with g++ instead of gcc?

Also, the "status" member should be type char *, not char.
 
Old 10-07-2004, 05:20 PM   #3
The_Dish
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Original Poster
Rep: Reputation: 0
I have no idea if its g++...

I'm telneting into a school network and I know gcc and cc are available. Both of them are giving me these errors.

Changing "status" to type char * eliminated the second error but I have a question regarding that, when and how do I determine if I want to use a char* or just a char?

Does anyone else have any idea why I would be getting an error from the malloc line?

Thanks
The_Dish
 
Old 10-07-2004, 05:30 PM   #4
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
I get an error from malloc() when I compile with g++ and don't cast the return value. Here:
Code:
itsme@itsme:~/C$ cat sploof.c
#include <stdlib.h>

int main(void)
{
  typedef struct
  {
    int data;
  } node;
  node *newHead;

  newHead = malloc(sizeof(node));

  return 0;
}
itsme@itsme:~/C$ gcc -Wall sploof.c -o sploof
itsme@itsme:~/C$ g++ -Wall sploof.c -o sploof
sploof.c: In function `int main()':
sploof.c:11: error: invalid conversion from `void*' to `main()::node*'
itsme@itsme:~/C$
That's with gcc-3.4.2. Older versions of g++ might give a different error.

How exactly are you compiling your program?

And to answer your question, you use char * when you want to use a pointer to type char and you use char when you want a char.
 
Old 10-07-2004, 08:13 PM   #5
The_Dish
LQ Newbie
 
Registered: Oct 2004
Posts: 3

Original Poster
Rep: Reputation: 0
I complie with:

gcc listapi.c

OR

cc listapi.c

I realize the difference between a char and a char*, I guess I just dont see when each one applies. A lot of the time in my notes from various classes, the prof's always seem to use char*'s as parameters and then randomly pick and choose between char's and char*s whenever declaring variables. But whatever, thanks for your help.

I also tried writing and compiling your code from the above reply and still recieved the same error message, so it must be the compiler at school.

The_Dish
 
Old 10-07-2004, 08:53 PM   #6
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
You'll get the error with gcc if you don't #include <stdlib.h>. The reason is because without the malloc() prototype the return type defaults to int instead of void * like it's supposed to be. If you #include <stdlib.h> the error/warning should go away.

char and char * are definitely very much different. It would be a very lengthy topic for me to get into, but a google search on pointers in C should reveal a lot.
 
Old 10-08-2004, 01:53 PM   #7
RadHatter
LQ Newbie
 
Registered: Oct 2004
Posts: 1

Rep: Reputation: 0
It's usually a good idea to cast the return value of malloc to whatever pointer you're trying to make. A void *, which malloc returns, can't be dereferenced by itself and needs to be cast before dereferencing. I'd recommend changing your code to read:

newHead = (node *)malloc(sizeof(node));
 
Old 10-08-2004, 04:33 PM   #8
Hivemind
Member
 
Registered: Sep 2004
Posts: 273

Rep: Reputation: 30
If you code in C, it's not a good idea to cast the return value of malloc(), it's actually
a bad idea because will hide any failure to include the header where malloc() is declared,
namely stdlib.h.
In C++, on the other hand, you must cast what malloc() returns because C++ won't perform
that conversion automatically as C will. But if you use C++, you should always use new and
delete when allocating memory dynamically.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
compilation prob with gcc srinis Programming 4 03-15-2005 04:53 AM
GCC Compilation Trouble Permaximus Linux - Software 3 11-03-2004 02:17 AM
should I use gcc-2.95.3 for kernel compilation shanenin Linux From Scratch 9 07-25-2004 10:24 PM
strange gcc compilation errors in Tru64 UNIX Eric F Programming 0 12-18-2003 02:22 PM
gcc compilation error Proger Programming 1 03-22-2003 12:32 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 05:29 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration