Reputation: 69
What does the following error mean:
In function `get_ints`: `l` undeclared (first use in this function)
Thanks, Josh
Upvotes: 0
Views: 144
Reputation: 84169
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.
Upvotes: 4