Answer:
That was a very great story that I totally did NOT read cause it too long 0-0.
Explanation:
To my ferns.....GET ON RN CAUSE I WONLEY T^T
Anyways wuv c'alls and have a good day :3
<span>The following statements are true:
1. Leased lines require little installation and maintenance expertise.
( A high service quality is offered by point-to point system)
2. Leased lines provide highly flexible bandwidth scaling.
(This Allows a Constant availability)</span>
The answer is true.
Let's say we are calculating the volume of a grain silo where the the width is a constant, but the height can be changed.
In our code we would calculate the volume using something like:
PI * (WIDTH / 2)^2 * height
The variables in all caps would be named constants. Using them makes the code more readable to other people than if we were to just use their values like:
3.14 * (145.75 / 2)^2 * height
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.
Because machine (cpu) can only execute machine code(language).