1.

Give the output of the following program: #include int main() { long number = 5572331, result=0; do { result * = 10; int digit = number% 10; result += digit ; number / = 10; } while (number>0); cout<< result ; return 0; }

A. 7552133
B. 3312755
C. 1332755
D. None of these
Answer» D. None of these


Discussion

No Comment Found