Report Bug
Qus :

What will be the output of following program?

int main() 
{
 	for(int c=1;c<5;++c); 
	printf(“%d”,c); 
}

Qus



A. 1
B. 5
C. 6
D. 12345


Solution
C. 6






Report Bug