swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 5d826e972970a784bd7a7bdf587512510097b8c7 authored by Junio C Hamano on 09 December 2018, 04:16:21 UTC
Git 2.20
Tip revision: 5d826e9
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