Answer:
A (information technology)
Explanation:
Void test(char *s)
{
int i, d;
sscanf(s, "%i", &i);
printf("%s converts to %i using %%i\n", s, i);
sscanf(s, "%d", &d);
printf("%s converts to %d using %%d\n", s, d);
}
int main()
{
test("123");
test("0x123");
return 0;
}
outputs:
123 converts to 123 using %i
123 converts to 123 using %d
0x123 converts to 291 using %i
0x123 converts to 0 using %d
As you can see, %i is capable of parsing hexadecimal, whereas %d is not. For printf they're the same.
The Match up of the levels of information with the content of the information that Matt has shared are:
The nice to know - Ted makes an announcement of the total annual profit of the company.
The should know - Ted gives his team a brief of the email etiquette for them to follow.
The must know - Ted informs his team about the office work hours and dress code.
<h3>What do you mean by information?</h3>
Information is known to be data or any form of stimuli that connote a given meaning in some context to its receiver.
Hence, The Match up of the levels of information with the content of the information that Matt has shared are:
The nice to know - Ted makes an announcement of the total annual profit of the company.
The should know - Ted gives his team a brief of the email etiquette for them to follow.
The must know - Ted informs his team about the office work hours and dress code.
Learn more about information from
brainly.com/question/4231278
#SPJ1
Answer:
Windows 10 if this is what I think u mean