Skip to content

Instantly share code, notes, and snippets.

@Anish-M-code
Created November 26, 2020 10:29
/* This program opens the browser and opens the website https://tails.boum.org
in the default web browser in a Windows PC*/
/* Program made by M.Anish only. */
#include<stdio.h>
#include<stdlib.h>
int main()
{
system("start https://tails.boum.org");
printf("\nMade by M.Anish\n");
system("timeout 10");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment