tags:

views:

100

answers:

2

Hi,

What does the following error mean:

In function `get_ints`:
`l` undeclared (first use in this function)

Thanks, Josh

+1  A: 

You used l somewhere and didn't define it.

Matthew Iselin
Thanks everybody. You guys were right.
Josh
+4  A: 

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.

Nikolai N Fetissov