Sort by using Structure's arrays












-2















So I want to sort the list so that i can give them their position according to their grades but it's not working.



It is Showing error like : incompatible types when assigning to type char from type struct info.



p.s : I am trying to do this sorting using Structures.



#include <stdio.h>
#define SIZE 3

struct info {
char name[20];
int number;
double grade;
};
int main(void) {
struct info list[SIZE];
int i, j;
char temp;
int avg;
for (i = 0; i < SIZE; i++) {
printf("Enter your name : ");
scanf("%s", list[i].name);
printf("Enter your number : ");
scanf("%d", & list[i].number);
printf("Enter your grade : ");
scanf("%lf", & list[i].grade);
}
for (i = 0; i < SIZE; i++) {
printf("Name : %s Student Number : %d Grade : %f", list[i].name,
list[i].number, list[i].grade);
printf("n");
}
for (i = 0; i < SIZE; i++) {
for (j = i + 1; j < SIZE; j++) {
if (list[j].grade > list[i].grade) {
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
}
for (i = 0; i < SIZE; i++) {
printf("%d st Position : Name : %s Student Number : %d Grade : %f ",i,
list[i].name, list[i].number, list[i].grade);
printf("n");
}
avg = 0;
for (i = 0; i < SIZE; i++)
avg += list[i].grade;
avg = avg / 3;
printf("Average is %d", avg);
getch();
return 0;
}


errors are in the following code:



for(i=0;i<SIZE;i++) {
for(j=i+1;j<SIZE;j++) {
if(list[j].grade>list[i].grade) {
temp=list[j];
list[j]=list[i];
list[i]=temp;
}
}
}









share|improve this question

























  • errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

    – Muneer
    Nov 20 '18 at 7:40








  • 3





    Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

    – Some programmer dude
    Nov 20 '18 at 7:42






  • 4





    It works when I change char temp; to struct info temp;.

    – Blaze
    Nov 20 '18 at 7:42











  • Thankyou Blaze :)

    – Muneer
    Nov 20 '18 at 7:52






  • 1





    can you not simply use qsort with a custom comparator ?

    – Sander De Dycker
    Nov 20 '18 at 8:40
















-2















So I want to sort the list so that i can give them their position according to their grades but it's not working.



It is Showing error like : incompatible types when assigning to type char from type struct info.



p.s : I am trying to do this sorting using Structures.



#include <stdio.h>
#define SIZE 3

struct info {
char name[20];
int number;
double grade;
};
int main(void) {
struct info list[SIZE];
int i, j;
char temp;
int avg;
for (i = 0; i < SIZE; i++) {
printf("Enter your name : ");
scanf("%s", list[i].name);
printf("Enter your number : ");
scanf("%d", & list[i].number);
printf("Enter your grade : ");
scanf("%lf", & list[i].grade);
}
for (i = 0; i < SIZE; i++) {
printf("Name : %s Student Number : %d Grade : %f", list[i].name,
list[i].number, list[i].grade);
printf("n");
}
for (i = 0; i < SIZE; i++) {
for (j = i + 1; j < SIZE; j++) {
if (list[j].grade > list[i].grade) {
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
}
for (i = 0; i < SIZE; i++) {
printf("%d st Position : Name : %s Student Number : %d Grade : %f ",i,
list[i].name, list[i].number, list[i].grade);
printf("n");
}
avg = 0;
for (i = 0; i < SIZE; i++)
avg += list[i].grade;
avg = avg / 3;
printf("Average is %d", avg);
getch();
return 0;
}


errors are in the following code:



for(i=0;i<SIZE;i++) {
for(j=i+1;j<SIZE;j++) {
if(list[j].grade>list[i].grade) {
temp=list[j];
list[j]=list[i];
list[i]=temp;
}
}
}









share|improve this question

























  • errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

    – Muneer
    Nov 20 '18 at 7:40








  • 3





    Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

    – Some programmer dude
    Nov 20 '18 at 7:42






  • 4





    It works when I change char temp; to struct info temp;.

    – Blaze
    Nov 20 '18 at 7:42











  • Thankyou Blaze :)

    – Muneer
    Nov 20 '18 at 7:52






  • 1





    can you not simply use qsort with a custom comparator ?

    – Sander De Dycker
    Nov 20 '18 at 8:40














-2












-2








-2








So I want to sort the list so that i can give them their position according to their grades but it's not working.



It is Showing error like : incompatible types when assigning to type char from type struct info.



p.s : I am trying to do this sorting using Structures.



#include <stdio.h>
#define SIZE 3

struct info {
char name[20];
int number;
double grade;
};
int main(void) {
struct info list[SIZE];
int i, j;
char temp;
int avg;
for (i = 0; i < SIZE; i++) {
printf("Enter your name : ");
scanf("%s", list[i].name);
printf("Enter your number : ");
scanf("%d", & list[i].number);
printf("Enter your grade : ");
scanf("%lf", & list[i].grade);
}
for (i = 0; i < SIZE; i++) {
printf("Name : %s Student Number : %d Grade : %f", list[i].name,
list[i].number, list[i].grade);
printf("n");
}
for (i = 0; i < SIZE; i++) {
for (j = i + 1; j < SIZE; j++) {
if (list[j].grade > list[i].grade) {
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
}
for (i = 0; i < SIZE; i++) {
printf("%d st Position : Name : %s Student Number : %d Grade : %f ",i,
list[i].name, list[i].number, list[i].grade);
printf("n");
}
avg = 0;
for (i = 0; i < SIZE; i++)
avg += list[i].grade;
avg = avg / 3;
printf("Average is %d", avg);
getch();
return 0;
}


errors are in the following code:



for(i=0;i<SIZE;i++) {
for(j=i+1;j<SIZE;j++) {
if(list[j].grade>list[i].grade) {
temp=list[j];
list[j]=list[i];
list[i]=temp;
}
}
}









share|improve this question
















So I want to sort the list so that i can give them their position according to their grades but it's not working.



It is Showing error like : incompatible types when assigning to type char from type struct info.



p.s : I am trying to do this sorting using Structures.



#include <stdio.h>
#define SIZE 3

struct info {
char name[20];
int number;
double grade;
};
int main(void) {
struct info list[SIZE];
int i, j;
char temp;
int avg;
for (i = 0; i < SIZE; i++) {
printf("Enter your name : ");
scanf("%s", list[i].name);
printf("Enter your number : ");
scanf("%d", & list[i].number);
printf("Enter your grade : ");
scanf("%lf", & list[i].grade);
}
for (i = 0; i < SIZE; i++) {
printf("Name : %s Student Number : %d Grade : %f", list[i].name,
list[i].number, list[i].grade);
printf("n");
}
for (i = 0; i < SIZE; i++) {
for (j = i + 1; j < SIZE; j++) {
if (list[j].grade > list[i].grade) {
temp = list[j];
list[j] = list[i];
list[i] = temp;
}
}
}
for (i = 0; i < SIZE; i++) {
printf("%d st Position : Name : %s Student Number : %d Grade : %f ",i,
list[i].name, list[i].number, list[i].grade);
printf("n");
}
avg = 0;
for (i = 0; i < SIZE; i++)
avg += list[i].grade;
avg = avg / 3;
printf("Average is %d", avg);
getch();
return 0;
}


errors are in the following code:



for(i=0;i<SIZE;i++) {
for(j=i+1;j<SIZE;j++) {
if(list[j].grade>list[i].grade) {
temp=list[j];
list[j]=list[i];
list[i]=temp;
}
}
}






c sorting structure






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 10:59









Karsten Koop

2,02111220




2,02111220










asked Nov 20 '18 at 7:39









MuneerMuneer

15




15













  • errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

    – Muneer
    Nov 20 '18 at 7:40








  • 3





    Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

    – Some programmer dude
    Nov 20 '18 at 7:42






  • 4





    It works when I change char temp; to struct info temp;.

    – Blaze
    Nov 20 '18 at 7:42











  • Thankyou Blaze :)

    – Muneer
    Nov 20 '18 at 7:52






  • 1





    can you not simply use qsort with a custom comparator ?

    – Sander De Dycker
    Nov 20 '18 at 8:40



















  • errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

    – Muneer
    Nov 20 '18 at 7:40








  • 3





    Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

    – Some programmer dude
    Nov 20 '18 at 7:42






  • 4





    It works when I change char temp; to struct info temp;.

    – Blaze
    Nov 20 '18 at 7:42











  • Thankyou Blaze :)

    – Muneer
    Nov 20 '18 at 7:52






  • 1





    can you not simply use qsort with a custom comparator ?

    – Sander De Dycker
    Nov 20 '18 at 8:40

















errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

– Muneer
Nov 20 '18 at 7:40







errors are in the following code !!! for(i=0;i<SIZE;i++) { for(j=i+1;j<SIZE;j++) { if(list[j].grade>list[i].grade) { temp=list[j]; list[j]=list[i]; list[i]=temp; } } }

– Muneer
Nov 20 '18 at 7:40






3




3





Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

– Some programmer dude
Nov 20 '18 at 7:42





Don't post the location as a comment, instead edit your question to add a comment in that location in the code you show. And copy-paste the full and complete output into the question body as well.

– Some programmer dude
Nov 20 '18 at 7:42




4




4





It works when I change char temp; to struct info temp;.

– Blaze
Nov 20 '18 at 7:42





It works when I change char temp; to struct info temp;.

– Blaze
Nov 20 '18 at 7:42













Thankyou Blaze :)

– Muneer
Nov 20 '18 at 7:52





Thankyou Blaze :)

– Muneer
Nov 20 '18 at 7:52




1




1





can you not simply use qsort with a custom comparator ?

– Sander De Dycker
Nov 20 '18 at 8:40





can you not simply use qsort with a custom comparator ?

– Sander De Dycker
Nov 20 '18 at 8:40












1 Answer
1






active

oldest

votes


















0














You assign a type char with name temp and try to assign a struct to it. Instead create a struct temp and then sort your array of structs.



#include <stdio.h>
#define SIZE 3

struct info { // use typedef struct info instead
char name[20];
int number;
double grade;
};
int main(void) {
struct info list[SIZE]; // allows you to write info list[size]
int i, j; // do not initialize loop variables outside of their loops unless you need to(makes it easier to read the loop statements/spot mistakes)
char temp; // you need to use a type info, not char e.g. info temp


I can not compile it myself at the moment, so please let us know in the comments if you have any further questions.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388281%2fsort-by-using-structures-arrays%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You assign a type char with name temp and try to assign a struct to it. Instead create a struct temp and then sort your array of structs.



    #include <stdio.h>
    #define SIZE 3

    struct info { // use typedef struct info instead
    char name[20];
    int number;
    double grade;
    };
    int main(void) {
    struct info list[SIZE]; // allows you to write info list[size]
    int i, j; // do not initialize loop variables outside of their loops unless you need to(makes it easier to read the loop statements/spot mistakes)
    char temp; // you need to use a type info, not char e.g. info temp


    I can not compile it myself at the moment, so please let us know in the comments if you have any further questions.






    share|improve this answer




























      0














      You assign a type char with name temp and try to assign a struct to it. Instead create a struct temp and then sort your array of structs.



      #include <stdio.h>
      #define SIZE 3

      struct info { // use typedef struct info instead
      char name[20];
      int number;
      double grade;
      };
      int main(void) {
      struct info list[SIZE]; // allows you to write info list[size]
      int i, j; // do not initialize loop variables outside of their loops unless you need to(makes it easier to read the loop statements/spot mistakes)
      char temp; // you need to use a type info, not char e.g. info temp


      I can not compile it myself at the moment, so please let us know in the comments if you have any further questions.






      share|improve this answer


























        0












        0








        0







        You assign a type char with name temp and try to assign a struct to it. Instead create a struct temp and then sort your array of structs.



        #include <stdio.h>
        #define SIZE 3

        struct info { // use typedef struct info instead
        char name[20];
        int number;
        double grade;
        };
        int main(void) {
        struct info list[SIZE]; // allows you to write info list[size]
        int i, j; // do not initialize loop variables outside of their loops unless you need to(makes it easier to read the loop statements/spot mistakes)
        char temp; // you need to use a type info, not char e.g. info temp


        I can not compile it myself at the moment, so please let us know in the comments if you have any further questions.






        share|improve this answer













        You assign a type char with name temp and try to assign a struct to it. Instead create a struct temp and then sort your array of structs.



        #include <stdio.h>
        #define SIZE 3

        struct info { // use typedef struct info instead
        char name[20];
        int number;
        double grade;
        };
        int main(void) {
        struct info list[SIZE]; // allows you to write info list[size]
        int i, j; // do not initialize loop variables outside of their loops unless you need to(makes it easier to read the loop statements/spot mistakes)
        char temp; // you need to use a type info, not char e.g. info temp


        I can not compile it myself at the moment, so please let us know in the comments if you have any further questions.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 20 '18 at 15:47









        atsats

        694




        694






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388281%2fsort-by-using-structures-arrays%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

            Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

            A Topological Invariant for $pi_3(U(n))$