Discussion board
What is the syntax of if statement ?
By Manju S Reddy
syntax of if statement....
Reply
Post   Reset
Teacher SiliconIndia replied to Manju S Reddy Wednesday, March 17, 2010
Hi Manjunath,
To use this statement to execute some code only if a specified condition is true.
if (condition TRUE)
{
code to be executed if condition is true;
}