What is output of below program?

int main()
{
int i,j,count;
count=0;
for(i=0; i8; i++);
{
for(j=0;j8;j++);
{
count++;
}
}
printf("%d",count);
return 0;
}

Posted on by