This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This is an error of a beginner programmer, however it leaded to an | |
| // unprevisible behavior that I think it is interesting to share. | |
| #include <stdio.h> | |
| int main() { | |
| char c; | |
| int i = 1; | |
| while (1) { | |
| // Prints `i` normally |