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

Tree @master (Download .tar.gz)

test3.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>

int
main(int argc, char **argv)
{
	long long a = 1726384394;
	long long b = 67283;

	fprintf(stdout, "%ld, %ld\n", sizeof(a), a % b);
	return(0);
}