fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7. static unsigned char A;
  8. A = 255;
  9. cout << endl << "A = " << A;
  10. do {
  11. A++;
  12. cout << endl << "A = " << A;
  13.  
  14. } while (A != 0);
  15.  
  16.  
  17. }
  18.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
A = �
A =