Answer:
-44.92
Explanation:
If he has no money hell be in the hole
They're bytes consisting of 8 bits, so the max value is 2^8-1 = 255
Answer:
Open source software
Explanation:
Open source software is exactly what you think it is, the code to compile the software and run it is available to the public for use or modification.
Atleast a minimum of 3%. Brainliest?
Answer:
This is what the code should do:
“Lift off in T minus
5
4
3
2
1
Blast-off!”
When I run it, it just keeps printing ''Sum = 5'' forever.
Explanation:
Code:
int main(void) {
int sum = 5;
int i;
printf("Lift off in T minus\n");
for (i = 0; i < 5; i=i+i) {
sum = sum - i;
printf("sum = %d\n",sum);
}
printf("Blast-off",sum);
return 0;