Hi Guys,
i just found that the word http: is working fine in my C Program without giving any error.
writing a program for your reference.
Please do suggest why this is not giving any error.Code:#include<stdio.h>
#include<conio.h>
void main()
{
http:
clrscr();
printf("http is working fine");
getch();
}

