C Programming: Can you guess the output? Printing ASCII Table.

ASCII C Program

Have you wondered why the above program results in infinite loop? Apparently there is no reason to be. It is a very simple program to print the ASCII table and we know that the ASCII value of characters range from 0 to 255 and it is prominent that the loop is going from 0 to 255. So why the infinite loop?

Read More