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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T13:53:02+00:00 2026-05-16T13:53:02+00:00

i wrote the code but i dont get max value how to find max

  • 0

i wrote the code but i dont get max value how to find max value

#include <stdio.h>
int main(void)
{
        double temp[0];
        float max,min;
        float i;
        short c,j,k;
        float sum=0;
        float nu[c];

        printf("Number of values :");
        scanf("%f",&i);

        for (c=1;i>=c;c++)
        {
          printf("values=");
          scanf("%f",&nu[c]);

          nu[c]=temp[0];

          for (j = 0; i>=j; j++)
          {
             if (temp[0]> nu[c])
             {
             //      nu[c]=temp[0];
                  max = temp[0];

             }
        }
        sum = sum + nu[c];
      }
      printf("sum = %f \n",sum);
      printf("maximum value = %f\n",max);
}
  • 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-16T13:53:03+00:00Added an answer on May 16, 2026 at 1:53 pm

    If you run your compiler with a -Wall (as you should always do), you should have seen the problems :

    gcc -Wall -o foo foo.c
    foo.c: In function 'main':
    foo.c:35:14: warning: unused variable 'k'
    foo.c:33:14: warning: unused variable 'min'
    foo.c:62:1: warning: control reaches end of non-void function
    foo.c:37:4: warning: 'c' is used uninitialized in this function
    

    Here is the source code of a program that works :

    #include <stdio.h>
    
    int main(void)
    {
       float max = 0; // hypothesis : numbers keyed by the users are > 0
       float min = 0; // hypothesis : numbers keyed by the users are > 0
       int i, c;
       float sum = 0;
       float nu[100]; // hypothesis : no more than 100 numbers keyed by user
                      // hypothesis : float type is enough to store numbers keyed by user
       printf("Number of values :");
       scanf("%d",&i);
    
       for (c = 0; c < i; c++)
       {
             printf("values=");
             scanf("%f",&(nu[c]));
    
             if (nu[c] > max) {
                max = nu[c];
             }
    
             if (min == 0) {
                min = nu[c];
             } else if(nu[c] < min) {
                min = nu[c];
             }
    
             sum = sum + nu[c];
       }
       printf("sum = %f \n",sum);
       printf("maximum value = %f \n", max);
       printf("minimum value = %f \n", min);
    
       return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote code to get name of printer which is installed in my system.but
I wrote this code. The constructor works normally, but in the destructor I get
I dont get it. I wrote the code to have the footer always at
I wrote following code...but i am getting Error like: Error 1 'LoginDLL.Class1.Login(string, string, string)':
Im new to ruby, wrote this code and works but i know is not
I wrote this code for zoom in/out . it works but even with one
i wrote following code to create a linkbutton programmatically, but its showing like lable
My brother wrote this code for me to show an example of polymorhism. But
Hi I wrote a code to read from the database and its working. but
I have to fix a glitch with this code someone wrote but I'm not

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.