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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T00:55:07+00:00 2026-06-07T00:55:07+00:00

What is following will surely appear very simple for c coders but I am

  • 0

What is following will surely appear very simple for c coders but I am coding a small program to modelize some game called gomoku. For the user, you have to enter an integer N wich corresponds to a ‘N times N’ square which consists of ‘N times N’ integers.

So the code is runnig quite well but I have some simple question : when I enter the ‘N times N’ integers, I made some

    int N;
    scanf("%d",&N);
    char c[N][N];
    while (i<N){
        scanf("%s\n",&c[i]); 
        i++;
    }

then I converted the char to int for each c[i] to make some computation involving c[i][j], which is quite unnatural. But if I had to declare int c[N][N], it would be impossible to retrive the same integers c[i][j] like those I inputed when the while-loop is running.

Does anyone has an idea to declare int c[N][N], inputing integers, and then computing the same when computing with integers c[i][j] ?

Best,
Newben

  • 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-07T00:55:09+00:00Added an answer on June 7, 2026 at 12:55 am

    You don’t have to read char and then convert it to int. You can just simply read integeres:

    for(int i = 0; i < N; ++i)
        scanf("%d", &c[i]);       //of course c has to be int** type
    

    And are you sure that you want to read just N integers? Not NN for whole array? In case you want to read NN objects to array, code should look like this:

    int N, i, j;
    scanf("%d",&N);
    int c[N][N];
    
    for(i = 0; i < N; ++i)
    {
        for(j = 0; j < N; ++j)
        {
            scanf("%d", &c[i][j]);
            /* do something */
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following will extract the files in /root/ directory. But it also creates the
Following command will let me know the names of databases. $ mysqlshow But how
The following script will update the database, but it won't display the correct page
The following code will search for the user within the domain controller, but I
So say I have the following very simple macro, along with a bit of
The following will throw the error Error in v$a : $ operator is invalid
Wondering if following will work for google in robots.txt Disallow: /*.action I need to
The following sql will return a count of how many users have played a
The following code will add the categories selector widget to the WordPress Page editor
The following code will log in my application to a server. That server will

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.