Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4081542
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:04:28+00:00 2026-05-20T18:04:28+00:00

I am Trying to work through some class examples and have gotten stuck on

  • 0

I am Trying to work through some class examples and have gotten stuck on the following:

The array grid should
have length width with each entry representing a column of
cells. Columns that have some occupied cells should be a
malloc’ed character array of length height.

with the given header:

void grid(char **grid, int width, int height)

grid is defined in another file as:

char **grid;

As I have said I have gotten stuck on using malloc, I currently have:

int x;
*grid = malloc(width * sizeof(char));

        for(x = 0; x < width; x++){
            grid[x] = malloc(height * sizeof(char));
        }

Can any one take a look at give me some pointers on the correct way to accomplish “Columns that have some occupied cells should be a
malloc’ed character array of length height.”, As I dont understand how the line:

grid[x] = malloc(height *
sizeof(char));

is equivalent to an array of char’s

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T18:04:28+00:00Added an answer on May 20, 2026 at 6:04 pm

    In C, an array is a pointer to the first element of the array. So an array is just a memory block, with the array variable pointing onto the first element in this memory block.

    malloc() reserves a new memory block of the specified size. To know the size of a type (i.e. number of bytes needed to store one variable of that type), one uses the sizeof operator. Hence a character needs sizeof(char) bytes, and hence height characters need height * sizeof(char).

    So with the malloc() call you allocate a memory block to store all the elements of the array, and malloc() returns a pointer onto the first of them.

    With C’s definition for an array variable (a pointer onto the first element), you can assign the results of malloc(...) to your array variable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to work through some Lift examples using CSS Selector Transforms . I'm
I have been trying to work my way through Project Euler, and have noticed
I'm currently trying to work through MVC validation, and am coming up against some
I'm trying to work through Project Euler and I'm hitting a barrier on problem
I'm trying to work through the problems on projecteuler.net but I keep running into
I'm trying to work through this guide to Rails routing , but I got
I,m trying to work through and test a Voice Recognition example based on the
Hey all, here is the issue I am currently trying to work through. We
I'm trying to work my way through Ron Jeffries's Extreme Programming Adventures in C#.
I'm trying to work my way through an Objective-C tutorial. In the book there

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.