Answer:
THE OPERATING SYSTEM (OS)
Explanation:
Answer:
I think it is the last one. Or first. Try first though.
Explanation:
Have a Great Day.
Answer:
Zero(0)
Explanation:
<u>Global Variables
</u>
Variables which are declared outside any function. Any function can use these variables,they are automatically initialized to zero(0).They are generally declared before main() function.
Example- C program for showing global variable is 0.
#include <stdio.h>
int g; // declaring g as global variable
int main()
{
printf("%d",g); //printing global variable
return 0;
}
<u>Output</u>
0
<span>an arrow ..............................</span>
I think the answer to this would be true