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 8187125
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T02:27:32+00:00 2026-06-07T02:27:32+00:00

On both for loops (ie: for(len… and for(wid… ), I receive the same error

  • 0

On both for loops (ie: for(len… and for(wid… ), I receive the same error message:

error: expected ‘;’ before ‘)’ token

void
init(void)
{
    //fills board up with numbers
    int tile = (d*d - 1);
    int len = 0;
    int wid = 0;

    for(len < d; len++)
        {
            for(wid < d; wid++)
                {
                    board[len][wid] = tile;
                    tile--;
                }
        }
}

Sorry to ask a similar question as before, but I’m a very confused Newbie!

  • 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-07T02:27:34+00:00Added an answer on June 7, 2026 at 2:27 am

    Every for-loop needs to have its 3 parts (initialization, test, update) and if you don’t have one or more of them, you still have to supply the two ;, so

    for(len < d; len++)
        ^
        |
    

    should really be

        |
        v
    for(;len < d; len++)
    

    and the same for the other for-loop in your function.

    For instance, this is how you would set up an infinite loop using for:

    for(;;)
    

    where all parts are skipped, but the two semi-colons are still required.

    Perhaps this is tutorial/reference on the for-loop is helpful as a review/reference.

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

Sidebar

Related Questions

When the while loop iterates, it skips both if loops and when the q=q->next
These two functions are both infinite loops, and the programe hangs once called in
I know how to use both for loops and if statements on separate lines,
I'm quite new to matlab, but I know how to do both for loops
I have experimented with both of these loops and came to notice that even
Both of the following are in nested loops, the first one takes 178 seconds
I am not seeing any difference. Looks like both Patterns are trying to compose
It looks like you cannot use a helper in a controller even if both
The using construct looks incredibly handy for situations that require both beginning and separated
Gut-feeling: It looks a little bit like two threads both try to initialise disk-based

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.