|
Reason for Output
I have a C program as
for(i=1;0;i++)
{
printf("Hello");
}
I thought there would be no output but I found in the book I studied the answer given as Hello printed once. Is this a printing error or can anyone explain the reason for the same.
|