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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:36:08+00:00 2026-06-07T15:36:08+00:00

The program takes in input a string from a text file like: 2 1.0

  • 0

The program takes in input a string from a text file like:

2 1.0 2.0 3.0 4.0

where the first number is the dimension of a square matrix, and other numbers are the matrix’s elements(stored in column major form).
Every number is separated by others with a “space” char
The program adds all number on a single column and multiply every result of this kind.
I.E. with this string the result will be: 21.0
The problem is: using this input, the output of the program will be:

Input string is 2 1.0 2.0 3.0 4.0

Extracted char type token 1.0 from the string

Extracted char type token 2.0 from the string

Extracted char type token 3.0 from the string

Extracted char type token 4.0 from the string

Converted char type token 1.0 into float type

Converted char type token 2.0 into float type

Converted char type token 2.0 into float type

Converted char type token 3.0 into float type

Printing matrix of float types:

1.000000

2.000000

2.000000

3.000000

Final result is 15.000000

Instead it should be:
Input string is 2 1.0 2.0 3.0 4.0

Extracted char type token 1.0 from the string

Extracted char type token 2.0 from the string

Extracted char type token 3.0 from the string

Extracted char type token 4.0 from the string

Converted char type token 1.0 into float type Converted char type token 2.0 into

float type Converted char type token 2.0 into float type Converted

char type token 3.0 into float type

Printing matrix of float types:

1.000000

2.000000

3.000000

4.000000

Final result is 24.000000

Here the code

#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>




/* void calculus(char string[], int matrixDimension)
 * Executes the following procedure:
 * 1) it extracts from the string, various char type tokens
 * 2) converts these char type tokens into float types and stores it into "squareMatrix" bidimensional vector
 * 3) does the calculus
 */
void calculus(char string[]);





int main()
{
    FILE* fileToReadFd;
    int nRead;
    char string[500] = {0};
    const char pathNameRead[] = "/home/caterpillar/canc/matrice2.txt";
    if((fileToReadFd = fopen(pathNameRead, "r")) == NULL)
    {
        printf("Ho provato ad aprire %s\n", pathNameRead);
        printf("errore nell'aprire il file\n" "%s\n", strerror(errno));
    }
    nRead=fread(&string[0],sizeof(char),100,fileToReadFd);


    printf("Input string is %s\n", &string[0]);
    calculus(string);
    fclose(fileToReadFd);
    return 0;

}


void calculus(char string[])
{
    int matrixDimension = atoi(&string[0]);

    float finalResult = 1;

    // float type square matrix to be filled
    float squareMatrix[matrixDimension][matrixDimension];

    // stores the result of every column addition
    float columnAddition[matrixDimension];

    /*
     * stores tokens from the string
     * I.E.:
     * token[0] contains "1.0"
     * token[1] contains "2.0"
     * token[2] contains "3.0"
     * token[3] contains "4.0"
     */
    char tokens[matrixDimension * matrixDimension][8];

    /*
     * zero initialize columnAddition vector
     */
    for(int i = 0; i < matrixDimension; i++)
    {
        columnAddition[i] = 0;
    }

    /*
     *  First strtok is necessary to be left alone since it takes away
     *  the first token that is not usefull ( it is the matrix dimension)
     */
    strtok(&string[0], " ");
    for(int i = 0; i < (matrixDimension * matrixDimension); i++)
    {
        strcpy(&tokens[i][0], strtok(NULL, " "));
        printf("Extracted char type token %s from the string\n", &tokens[i][0]);
    }

    for(int i = 0; i < matrixDimension; i++)
    {
        for(int j = 0; j < matrixDimension; j++)
        {
            squareMatrix[i][j] = atof(&tokens[i+j][0]);
            printf("Converted char type token %s into float type\n", &tokens[i+j][0]);
        }
    }
    printf("\nPrinting matrix of float types:\n");
    for(int i = 0; i < matrixDimension; i++)
    {
        for(int j = 0; j < matrixDimension; j++)
        {
            printf("%f\n", squareMatrix[i][j]);
        }
    }
    // does calculus
    for(int j = 0; j < matrixDimension; j++)
    {
        for(int i = 0; i < matrixDimension; i++)
        {

            columnAddition[j] = columnAddition[j] + squareMatrix[i][j];
        }
    }
    for(int i = 0; i < matrixDimension; i++)
    {
        finalResult = finalResult * columnAddition[i];
    }
    printf("Final result is %f\n", finalResult);
}
  • 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-07T15:36:10+00:00Added an answer on June 7, 2026 at 3:36 pm

    I believe this is the problem:

    squareMatrix[i][j] = atof(&tokens[i+j][0]);
    printf("Converted char type token %s into float type\n", &tokens[i+j][0]);
    

    As this will reference the same token for both (i=0, j=1) and (i=1, j=0) since both 1+0 = 1 and 0+1 = 1

    It should be

    squareMatrix[i][j] = atof(&tokens[i*matrixDimension+j][0]);
    printf("Converted char type token %s into float type\n", &tokens[i*matrixDimension+j][0]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This program takes 2 numbers from user input, asks them whether they'd like to
I have a perl program that takes input and output file arguments, and I'd
I am building a program that takes an input file in this format: title
I have a program that takes a list of names from a file and
I'm writing a function that takes a string of input from the user until
The question consists of an assembly program that takes an input from a C
Im trying to write a program that takes a txt file as input, and
The below program is used to take the input of integers from a text
I'm writing a program that will guess words taken from a big text file.
I wrote this function to communicate with an external program. Such program takes input

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.