Immoral bugs

Andrew Koenig ark at alice.UucP
Sun Feb 2 16:45:20 AEST 1986


>so that the two lines read:
>> 	do{		*to = *from++;
>>	...
>> 	case 0:	}while(--n>0);

Please!  Make that last line:

	case 0:; }while(--n>0);
	       ^
	       |
	       |
	note the semicolon



More information about the Comp.lang.c mailing list