79400754

Date: 2025-01-30 17:44:29
Score: 0.5
Natty:
Report link

The problem is that the code is declaring a function inside another function which you cannot do.

void main() 
{    // <---Start of function main()

void print_inpt_square() // <--- trying to start a new function within main()
{

Try adding a closing '}' before declaring print_inpt_square()

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: OfNothing