Hi,
What does the following error mean:
In function `get_ints`: `l` undeclared (first use in this function)
Thanks, Josh
Hi,
What does the following error mean:
In function `get_ints`: `l` undeclared (first use in this function)
Thanks, Josh
The compiler complains about variable l
being undeclared. Just from experience - check your integer constants, there's a chance you have l
instead of 1
somewhere there.