I have included my code and screenshots in this answer. In case, there is any indentation issue due to editor, then please refer to code screenshots to avoid confusion.
--------------Code for main.c-------------------------
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <time.h>
typedef enum Color{RED, GREEN, BLUE} Color;
//struct MyStruct is declared
typedef struct MyStruct
{
int value;
Color color;
} MyStruct;
int main(int argc, char** argv)
{
MyStruct *Arrayptr; //declare a pointer of type
MyStruct, this pointer is used to access array
int N;
if(argc != 2)
//if command line argument is not given
exit
{
printf("\nGive additional command
line argument\n");
exit(1);
}
N = atoi(argv[1]);
if(N <= 0) //if command line argument is not
integer greater than 0, then exit
{
printf("\nGive additional command
line argument as integer greater than 0\n");
exit(1);
}
Arrayptr = (MyStruct*)malloc(N * sizeof(MyStruct));
//dynamically declare array of MyStruct of size N elements
int i, r;
Color enum_array[] = {RED, GREEN, BLUE};
srand(time(0));
for (i = 0; i < N; i++)
//for each array element initialize
{
Arrayptr[i].value = i;
//initialize value to index
of object
r = rand()%3 + 1;
//random number in range 0 to 3
Arrayptr[i].color = enum_array[r];
//randomly select color and assign
}
printf("\nThe values for which color is RED:
\n");
for (i = 0; i < N; i++)
{
if(Arrayptr[i].color == RED) //for
each array element if color value is RED then print its value
{
printf("%d ",
Arrayptr[i].value);
}
}
printf("\n\n");
return 0;
}
--------------Screenshots for main.c-------------------------


--------------Output for main.c-------------------------

---------------------------------------------------
I hope this helps you.
Please rate on this answer if it helped you,
Thank You for the opportunity.
C Language Write the code that dynamically allocates an array of struct objects based on a...
Write code that dynamically allocates an array of 20 integers, then uses a loop to allow the user to enter values for each element of the array. In C++ please, do not google, thanks!
C Programming Language 2(a) Define a struct with 1 int array named i, 1 float array named f, and one double array named d, each of size M. (b)Declare array x with N of those structs. (c)Write a void function to traverse array x (using a pointer) assigning to each element in each array d (in each struct in array x) the sum of the corresponding elements in arrays i and f (in the same struct). Use 3 pointers (of...
read it carefully C++
Question: Write a program that dynamically allocates an array large enough to hold a user-defined number of test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the sorted list of scores and averages with appropriate headings. Use pointer notation rather than array notation whenever possible. Input Validation: Do not...
Write a program that dynamically allocates an integer array of size of 20 to hold a user-defined number of test scores. Once all the scores are entered, the array should be passed to • a function that calculates the average score, the minimal score, and the maximal score in the array, and returns these scores to the main function (hint: use pass by reference, I gave an example in the class) • a function that searches a specific number. The...
Write a C++ program that dynamically allocates an array large enough to hold a user-defined number of test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the sorted list of scores and averages with appropriate headings. Use pointer notation rather than array notation whenever possible. Input Validation: Do not accept negative numbers for...
Mips c
06: Write a line of code that allocates memory to store a structure of type Fruit on the heap typedef struct Fruit_struct f a. Fruit apple; b. Fruit *apple - malloc( &Fruit); c. Fruit *apple (Fruit *) malloc( sizeof(Fruit) d. Fruit apple (Fruit) malloc( sizeof(apple) ); // member variables Fruit;
C++ programming language POINTERS Write a program that dynamically allocates an array, on the Heap, large enough to hold 200 test scores between 55 and 99 -- using a Random Number generator to populate the array. Then do the following: 1) Sort scores in ascending order. 2) List your scores in rows of ten(10) values. 3) Calculate the Mean for the distribution. 4) Calculate the Variance for the distribution. 5) Calculate the Median for the distribution. 6) Calculate the Mode...
code in C language ADT: typedef struct{ int ID; float salary; int age; }Employee; Specification: In this lab, five functions need to be implemented using the given ADT. 1. Employee* readRecord(FILE*) This function receives a FILE pointer created before. It reads a line from the provided csv file, and creates an Employee struct pointer with the information from that line then returns the pointer back to the calling function. Each line in the provided csv file contains the id, salary,...
Write the code to dynamically allocate ONE integer variable using calloc (contiguous allocation) or malloc (memory allocation) and have it pointed to by a pointer (of type int * ) named ptr_1. Use ptr_1 to assign the number 7 to that dynamically allocated integer, and in another line use printf to output the contents of that dynamically allocated integer variable. Write the code to dynamically allocate an integer array of length 5 using calloc or malloc and have it pointed...
In C. I want to read in the data of a text file into an array of dynamically allocated structs. The file is read as a command-line argument The text file format is: <number of classes in this file> <department name of class 1>:<number of class 1>:<location of class 1> <department name of class 2>:<number of class 2>:<location of class 2> ... Assume that no piece of information in the file contains a colon: the colons are only used as...