Discussion :: Microprocessors
-
If N = 196, the result of the following program will be
INTEGER N, DIGIT 1, DIGIT 2, DIGIT 3,
SUM
READ*, N
DIGIT 1 = N - (N / 10)* 10 N = N / 10
DIGIT 2 = N - (N / 10)* 10 N = N / 10
DIGIT 3 = N - (N / 10)* 10
SUM = DIGIT 1 + DIGIT 2 + DIGIT 3
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment