/* running this program will create 
/* a process that runs for 10 seconds */


main () { int i=0;
alarm (10);

	while (i<100) {
	i = 20;
}
}


