Question: 1. Given the following structure definition and struct variable declaration: struct pixel { int red; int green; int blue; }; pixel x; Write a code
1. Given the following structure definition and struct variable declaration:
struct pixel
{
int red;
int green;
int blue;
};
pixel x;
Write a code segment to ask the user to type 3 numbers, and assign them to red, green, and blue of x. You may assume that the user only types integers.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
