What are typical uses of null statement
;
in C ?
I know that it is basically used to skip expression where it is expected
Example:
while (!kbhit()) ;
Should be self-explanatory.