C Project – Coin Toss Simulator Project in C with Source Code
Get Certified in C Programming and Take Your Skills to the Next Level
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******");
}
You give me 15 seconds I promise you best tutorials
Please share your happy experience on Google

