Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ nested if

if (condition1) 
{
   // Executes when condition1 is true
   if (condition2) 
   {
      // Executes when condition2 is true
   }
}
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #nested
ADD COMMENT
Topic
Name
9+5 =