git @ Cat's Eye Technologies Dipple / master c / test4.c
master

Tree @master (Download .tar.gz)

test4.c @masterraw · history · blame

/*
 * SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
 * For more information, please refer to <https://unlicense.org/>
 * SPDX-License-Identifier: Unlicense
 */

#include <stdio.h>

#define SIZE 1024

int
main(int argc, char **argv)
{
	long g = 1;

	for (;;) {
		printf("g = %ld\n", g);
		g = g * 2;
	}
	return(0);
}