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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:52:42+00:00 2026-06-11T17:52:42+00:00

I am trying to write a simple program that reads integers from a data

  • 0

I am trying to write a simple program that reads integers from a data file and outputs the minimum and maximum value. The first integer of the input file will indicate how many more integers will be read, and then the integers will be listed.

Example input file:

5 100 -25 42235 7 -1

As simple as this is, i’m not sure where to start. I imagine I will need to create an array of size = the first integer, then increment my position in the array and compare to a min/max value.

I am not sure what the syntax would be to declare an array with the first integer, then fill the array with the remaining integers, or if that is even the right approach. After creating the array, I should have no problem assigning values to min/max variables with a loop increasing position through the array.

  • 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-11T17:52:43+00:00Added an answer on June 11, 2026 at 5:52 pm

    There is no need to use an array to store data. You just need to find out minimum and maximum values from data received from a file.

    long lMin = 0, lMax = 0;
    int nCount;
    long lNo;
    // open file
    fscanf( file, "%d", &nCount );
    for( int i = 0; i < nCount; i++ )
    {
       fscanf( file, "%ld", &lNo );
       if( lNo > lMax )
           lMax = lNo;
       if( lNo < lMin )
           lMin = lNo;
    }
    printf(" Min = %ld Max = %ld\n", lMin, lMax );
    // close file
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write a simple program in C# that will read data
I'm trying to write a simple program that takes in the users input, then
I am trying to write a c++ program that would read key frames from
Hey guys I'm trying to write a simple socket program that basically send like
I'm trying to write a simple high-low program that will output like this: $
Hi I'm trying to write an overflow exploit for a simple program that I've
I am trying to write a simple program to open a socket channel to
I'm new to Pascal and I am trying to write a simple program, but
I am trying to write a simple java program which returns me all the
I'm trying to write a simple curl program to retrieve the web page in

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.