Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Member Login

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Eng-Tips
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...This site is truly a marvel. Without a doubt the most comprehensive, friendly and just plain useful resource of its kind..."

Geography

Where in the world do Eng-Tips members come from?
ciara (Marine/Ocean)
23 May 01 6:21
Could somebody please help me, it’s all just getting a little to frustrating!!

I was initially working with a long .c file.  Within this file I had declared a global char variable of month, with the following syntax…

char month[13][4] = { "", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };

It worked just fine, declared initialised etc everything knows where to go.

I then fiddled the program to make it modular.  Therefore month is declared in the .h file.

When I subsequently try to initialise the array in the main method I just get a syntax error.

I’m trying to initialise it by writing….

month[1][ ] = “Jan”;
month[2][ ] = “Feb”;
etc

Is this completely wrong??  
Jattie (Electrical)
18 Dec 02 4:37
Yes, you can not do it like that. You have to use a string related function like a stringcopy or sprintf. Using sprintf like this.

sprintf(month[1],"%s","Jan");
LyMc (Computer)
21 Dec 02 4:32
Instead of declaring the character layout, declare month to be an array of pointers:

   char *month[12];

Then in the routine where you want to initialize the values,

   month[0] = "Jan";

or equivalent programming.  You can assign the pointer; you cannot assign a character array.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!

Back To Forum

Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close