[ERROR]
The indirection operator (*) was applied to a non-pointer value.
void main(void) {
int i;
*i=2;
}
Apply the indirection operator only on pointer values.