Hi all,
I have a small doubt. All the if , while statements if u have only one line of execution we can avoid the brackets for example
if (condition)
statement;
while(condition)
statement;
then why the same thing not applicable to function example ??
int function()
return value;
thanks and regards,
satya
I have a small doubt. All the if , while statements if u have only one line of execution we can avoid the brackets for example
if (condition)
statement;
while(condition)
statement;
then why the same thing not applicable to function example ??
int function()
return value;
thanks and regards,
satya