Answer:
Explanation:
Given
Required
The result when and
Analyzing the given instruction
a*=(++a)/(6)+(b++3)
Single out and solve the expressions in bracket
(++a) = a -- When the ++ operator appears before an operand, it is called pre increment. meaning that the operation will be done before the operand will be incremented.
So: in this case: ++a = a
The operator, as used in that statement is the same as: b + 3.
So:
The above expression is calculated as:
So:
D) Alt Tags thats the answer i think
I personally use the Kindle Paperwhite series, but any with an E-ink display will work great, as the display isn't very battery-consuming.
Answer:
you need to show what you need help with
Explanation:
In an if...else statement, if the code in the parenthesis of the if statement is true, the code inside its brackets is executed. But if the statement inside the parenthesis is false, all the code within the else statement's brackets is executed instead.
Of course, the example above isn't very useful in this case because true always evaluates to true. Here's another that's a bit more practical:
#include <stdio.h>
int main(void) {
int n = 2;
if(n == 3) { // comparing n with 3 printf("Statement is True!\n");
}
else { // if the first condition is not true, come to this block of code
printf("Statement is False!\n"); } return 0;
}
Output:
Statement is False!