void main()
{
int a, b, c, abc = 0;
a= b = c= 40;
if (c)
{
int abc;
abc = a*b+c;
printf ("c = %d, abc = %d" ,c, abc);
}
What is the output of this program

Posted on by