answersLogoWhite

0

What is if statement in c language?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

first i would like to tell about if .

if is keyword in c language .

if is check the condition(expression) .if the expression is non zero value the condition is true .it will the go through the fallowing operations .other wise the condition is failed.

if(expression)

{

}

if the expression is >0 ,<0 these statements are execute inside the if statement.

if the expression is =0 condition is failed.

User Avatar

Wiki User

13y ago

What else can I help you with?