Report Bug
Qus :

What will be the output of the following code?

void main()
{
	int x = 5*6/2 +8;
	printf("%d",x);
	return 0;
}


Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

void main()
{
	int x = 5*6/2 +8;
	printf("%d",x);
	return 0;
}



A. 20
B. 21
C. 23
D. 19


Solution
C. 23






Report Bug