Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

arrays - What is meaning of expression (!array_name[index]) in C?

Can somebody help me understand that what is the meaning of the expression:

if(!done[i])

Where done is an array containing integer elements, i is the index which ranges from 0 to 500 and done is an uninitialized array and only the last element is explicitly filled as 0.

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
if(done[i])

is the same as

if(done[i] != 0)

So,

if(!done[i])

is the same as

if(done[i] == 0)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...