Hello Friend,
I am novice in Python.
I saw an instruction in Python programming today in this link
http://www.learnpython.org/page/Conditions
There in question he wants to carryout logical AND operation with array and array element.
I tried the same in C.
But C threw an error.
How can we do it?
And how the AND operation will happen here?
first_array = [3, 4, 5]
if first_array and first_array[0] == 1:
print "5"
in c