// COMP1511 lecture example // // Print the 128 ASCII character encodings // // Andrew Taylor - andrewt@unsw.edu.au // 9/4/2017 #include int main(void) { int ascii; ascii = 0; while (ascii < 128) { printf("In ASCII %d prints as %c\n", ascii, ascii); ascii = ascii + 1; } return 0; }