how to open a website in c

C
#include <stdio.h>
#include <stdlib.h>
int main()
{     
	system("START www.your_website.com");
}
Source

Also in C: