2
Answers

Curley Brace Placing

Photo of Bineesh  Viswanath

Bineesh Viswanath

12y
1.4k
1
what is the difference between following statement:-

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


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

Kindly help me.

Answers (2)