int main()
{
int a,b,c;
a=b=5;
c=printf("%d%d",a,b); //line 5
printf("%d",c);
return 0
}
what will be the output of this C program..Please explain how line 5 works.
{
int a,b,c;
a=b=5;
c=printf("%d%d",a,b); //line 5
printf("%d",c);
return 0
}
what will be the output of this C program..Please explain how line 5 works.