2023 Project Description include include struct node int data struct node next int main struct node first p | Assignment Collections
Computer Science 2023 Computer
2023 Project Description include include struct node int data struct node next int main struct node first p | Assignment Collections
Project Description:
#include
#include
struct node {
int data;
struct node *next;
};
int main() {
struct node *first, *p, *first2, *p2;
int value;
first = 0;
scanf (“%d”, &value);
while (value != -9999){
p = first;
first = (struct node *) malloc (sizeof(struct node));
first -> data = value;
first -> next = p;
scanf(“%d”, &value);
}
for (p = first; p != 0; p = p -> next){
printf(“%d “, p -> data);
}
first2 = 0; p2 = 0;
for (p = first; p != 0; p = p -> next){
p2 = first2;
first2 = (struct node *) malloc (sizeof(struct node));
first2 -> data = p -> data;
first2 -> next = p2;
}
for (p2 = first2; p2 != 0; p2 = p2 -> next){
printf(“%d “, p2 -> data);
}
printf(“n”);
return 0;
}
Declare first2 and p2 to be local variables along with the other locals as follows:
struct node *first, *p, *first2, *p;
int value;
Translate the complete program to pep/9 assembly language.
We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.