What is the output of the following C++ code?
#include <stdio.h>
int main()
{
int a,b;
a = (b=2,b+3);
printf(%d,a);
return 0;
}
Reveal answer
Fill a bubble to check yourself
What is the output of the following C++ code?
#include <stdio.h>
int main()
{
int a,b;
a = (b=2,b+3);
printf(%d,a);
return 0;
}