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

  • Home
  • SEARCH
  • 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 8980201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:01:18+00:00 2026-06-15T20:01:18+00:00

I declared a struct which is supposed to be a pixel and it has

  • 0

I declared a struct which is supposed to be a pixel and it has 3 properties (x, y location and F intensity) like this:

struct pixel {
    int F,          // intensity from 0-255
    x,              // horizontal component           
    y;              // vertical component
};

Then I declared an 2D array of type pixel (the struct above) like this:

int N=100;
pixel image[N][N];

Then I used the following loop to assign values to x and y:

int count, k;

for (int i=0 ; i<N ; i++)
    for (int j=0 ; j<N ; j++)
    {
        k = j + i*N;
        image.x[k] = count;
        count++; 
     }

What did I do wrong?

  • 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-06-15T20:01:19+00:00Added an answer on June 15, 2026 at 8:01 pm

    The line

    image.x[k] = count;
    

    is incorrect. You declared a 2D array of pixels:

    pixel image[N][N];
    

    The way to access an element of the array is as follows:

    image[i][j].x = count;
    

    You do not need to calculate the flat index k yourself.

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

Sidebar

Related Questions

I've declared a struct in my header file like this: typedef struct { NSString
Let's suppose I have a struct like this: struct my_struct { int a; int
I have declared the following struct: typedef struct _RECOGNITIONRESULT { int begin_time_ms, end_time_ms; char*
I declared a multidimensional array in C, like so: int arr[4][2]; int length =
I'm getting this error: transform.c:23: warning: ‘struct user_data_s’ declared inside parameter list transform.c:23: warning:
int main() { // forward declaration struct myStruct_st *mS; // Note that this will
Consider this class from the WinAPI: typedef struct tagRECT { LONG left; LONG top;
I have a code which uses bit-fields declared as follows typedef struct my{ const
There is a forward C struct declared in an unmodifiable header. I would like
I'm trying to implement tree algorithms in C. I have declared a extern struct

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.