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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:34:33+00:00 2026-05-23T15:34:33+00:00

I have a text file with numbers: two numbers on each row, separated by

  • 0

I have a text file with numbers: two numbers on each row, separated by a space. Each pair of numbers represents an (x, y) co-ordinate. I am trying to write this in C, because it’s the language I know, but I am working in Visual Studio 2010. The code I have is as follows:

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>

#define MAXPOINTS 10

int _tmain(int argc, _TCHAR* argv[])
{
    double points [MAXPOINTS];

    int i;
    for (i = 0; i < MAXPOINTS; i++) {
        points[i] = 0.0;
    }

    FILE* pFile;
    pFile = fopen ("points.txt","r");

    if (pFile == NULL)
    {
        printf("Could not open file\n");
        return 0;
    }

    rewind (pFile);

    i = 0;
    while (fscanf(pFile, "%f %f", &points[i], &points[i + 1]) == 2) {
        printf("blah\n");
        i = i + 2;
    }

    for (i = 0; i < MAXPOINTS; i++) {
        printf("[%d] = %f\n", i, points[i]);
    }

    fclose (pFile);
    return 0;
}

The output is:

blah
blah
blah
[0] = 0.000000
[1] = 0.000000
[2] = 0.000000
[3] = 0.000000
[4] = 0.000000
[5] = 0.000000
[6] = 0.000000
[7] = 0.000000
[8] = 0.000000
[9] = 0.000000

Where points.txt has three rows:

100 200
300 400
500 500

I can’t figure out why the numbers aren’t being read into the array.

Any ideas?

  • 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-23T15:34:34+00:00Added an answer on May 23, 2026 at 3:34 pm

    %f format requires pointer to float, and you give pointer to double.

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

Sidebar

Related Questions

I have text file with a row like this: SendersTimeSeriesIdentification: COMPANY_A/COMPANY_B/REF_7/20090505 I'd like to
I have a text file of associated numbers i.e; 1 2 2 3 2
I have a text file that might contain thousands and thousands of numbers(0-9 -->
In a text file I will have a line containing a series of numbers,
Okay, basically, I have a large list of phone numbers in a text file
I have a File having text and few numbers.I just want to extract numbers
I have a text file containing a number of records. Each record is stored
I have Text file that contains data separated with a comma , . How
I have a large text file of records, each delimited by a newline. Each
I have text file with some stuff that i would like to put into

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.