Find the output of the following expression.
#include<stdio.h>
#include<conio.h>
void main()
{
int x, y =3;
x= ++y + 7;
printf(" %d " , x)
}
Reveal answer
Fill a bubble to check yourself
Find the output of the following expression.
#include<stdio.h>
#include<conio.h>
void main()
{
int x, y =3;
x= ++y + 7;
printf(" %d " , x)
}