Sort by using Structure's arrays
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
|
show 5 more comments
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
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 changechar temp;
tostruct info temp;
.
– Blaze
Nov 20 '18 at 7:42
Thankyou Blaze :)
– Muneer
Nov 20 '18 at 7:52
1
can you not simply useqsort
with a custom comparator ?
– Sander De Dycker
Nov 20 '18 at 8:40
|
show 5 more comments
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
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
c sorting structure
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 changechar temp;
tostruct info temp;
.
– Blaze
Nov 20 '18 at 7:42
Thankyou Blaze :)
– Muneer
Nov 20 '18 at 7:52
1
can you not simply useqsort
with a custom comparator ?
– Sander De Dycker
Nov 20 '18 at 8:40
|
show 5 more comments
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 changechar temp;
tostruct info temp;
.
– Blaze
Nov 20 '18 at 7:42
Thankyou Blaze :)
– Muneer
Nov 20 '18 at 7:52
1
can you not simply useqsort
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
|
show 5 more comments
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 20 '18 at 15:47
atsats
694
694
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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;
tostruct 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