swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 6cd33dceed60949e2dbc32e3f0f5e67c4c882e1e authored by Junio C Hamano on 18 April 2022, 05:21:51 UTC
Git 2.36
Tip revision: 6cd33dc
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