Program 1
// coin toss application
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<time.h>
#define clrscr() system("cls")
int main()
{
int n;
clrscr();
srand(time(NULL));
n=rand()%10;
// printf("%d",n);
if(n>5)
printf("*****head*****");
else
printf("*****tail******");
}