2
Answers

Curley Brace Placing

what is the difference between following statement:-

        if(argument)
        {
         if(argument)
        {
        if(argument)
        }
        }
                and


        if(argument)
        {
        }
        if(argument)
        {
        }

Kindly help me.

Answers (2)