Recent posts

java enum

less than 1 minute read

enum type ```java enum Level { LOW, MEDIUM, HIGH }

Basic tips for c++

1 minute read

NULL vs NIL Each language has its own identifier for no object. In C the standard library, NULL is a typedef of ((void )0). In C++ the standard library, NULL...

Basic grammar for c

4 minute read

c is one of my favorite languages but it’s still not easy to use. Sometimes I forget some grammars and I’m also having trouble to remember the loop statement...