Files
uni/ws2019/ipi/uebungen/cpp_headers/ASCII.cc
T

8 lines
97 B
C++

#include "fcpp.hh"
int main ()
{
for (int i=32; i<=127; i=i+1)
print(i,(char) i,0);
}