Answer:
#include <stdio.h>
typedef struct TimeHrMin_struct //struct
{
int hours;
int minutes;
} TimeHrMin;
struct TimeHrMin_struct SetTime(int hoursVal,int minutesVal) //SetTime function
{
struct TimeHrMin_struct str;
str.hours=hoursVal; //assigning the values
str.minutes=minutesVal;
return str; //returning the struct
}
int main(void)
{
TimeHrMin studentLateness;
int hours;
int minutes;
scanf("%d %d", &hours, &minutes);
studentLateness = SetTime(hours, minutes); //calling the function
printf("The student is %d hours and %d minutes late.\n", studentLateness.hours, studentLateness.minutes);
return 0;
}
Explanation:
The second one
01111
This is because a computer uses binary and only understands two digits which consit of 1 and 0
Answer:
integrity
is acting consistently according to one's values and principles.
HAARP stands for High Frequency Active Auroral Research Program. Its original purpose was to analyze the ionosphere and investigate the potential for developing ionospheric enhancement technology for radio communications and surveillance. But recently people started going crazy over the fact that it shot electromagnetic waves into the air which is basically what a radio does. Conspiracy theorists target this program and accuse it of weaponizing weather. This program allows us to study how waves flow through our sky's, from this information we can improve our communication technology.