Nested if in c language

                                 Nested if in c language 

Nested if in c language :- If we declere and process an if with in another . If the procesed is called nested .

Syntex of  Nested if statement :-
if(condition)
{
-
- // statements 
-
if(condition)
{
-
- // statements 
-
}
-
-
-
}
else 

Powered by Blogger.