shithub: battleship

ref: a39951d8f69209cfea2b7051832b851914e662ef
dir: /sizeof2d.c/

View raw version
#include <u.h>
#include <libc.h>

void
main()
{
	char m[10][5];

	print("%d\n", sizeof(m));
	exits(nil);
}