main ( )
{
int a = 3;
printf(“%d%d%d%d%d”,a++, ++a, ++a, a++);
}
a) 3566 b) 6653
c) 3565 d) 6666.
Answers
Answered by
0
if you are using c++ then the answer will be none of these because it is incoorect syntax
Similar questions