Hi Team, there is a bug , compiler not reporting error or warning while calling a function with parentheses.
For ex: void func() { printf("Hi i am in func"); } main() { // call the func here without parentheses func; // here even though we miss parentheses, no error reported , neither function got called } Regards, Akash Mishra