language: C++ 4.7.2 (gcc-4.7.2)
date: 397 days 3 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
 
using namespace std;
 
int main() {
         char* Test = "abc";
        int Pos = 0;
        while (Test[Pos] != 0)
        {
                cout << (int)(Test[Pos]) << ' ';
                ++Pos;
        }
        cout << (int)(Test[Pos]) << ' ';
        return 0;
}