swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 367f12b7e92aef4e8a41fe601d90984a2b7a0381 authored by Johannes Schindelin on 04 December 2019, 22:01:50 UTC
Git 2.21.1
Tip revision: 367f12b
appended1.c

int appended(void) // Begin of first part
{
	int i;
	char *s = "a string";

	printf("%s\n", s);

	for (i = 99;
	     i >= 0;
	     i--) {
		printf("%d bottles of beer on the wall\n", i);
	}

	printf("End of first part\n");
back to top