Jackson structured programming: Difference between revisions

Content deleted Content added
m Reverted edits by 59.90.173.87 (talk) to last version by Berny68
Editted Run-Length C code. The example and the code refer to "bytes" and a 255 limit for count, indicating all these variables are char type, not int. Could also #define BYTE type.
Line 137:
int main(int argc, char *argv[])
{
intchar c;
 
c = getchar();
while (c != EOF) {
intchar count = 1;
 
intchar first_byte = c;
 
c = getchar();