swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 2c04f6340579518c55a554fcac9fe21c01b3d3ea authored by Junio C Hamano on 05 June 2017, 00:05:38 UTC
Git 2.13.1
Tip revision: 2c04f63
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