What will be the output of the following program?
void func() { printf("Testing...Done"); } void main() { func; func(); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following program?
void func() { printf("Testing...Done"); } void main() { func; func(); }