Overblog Tous les blogs Top blogs Entreprenariat Tous les blogs Entreprenariat
Editer l'article Suivre ce blog Administration + Créer mon blog
MENU
http://fqdndh.over-blog.com/

fqdndh.over-blog.com/

Publicité

Web Browser Program



Mar 09, 2020 All things considered, this still is a web browser that is at the forefront of web technologies. Look beyond the privacy and memory issues, and Chrome is a program that will be entirely at ease in all your online adventures, even if other web browsers offer extra features. 6 Best EPUB Readers for Windows 10 2.

Online Web Browser
  1. Get the Firefox browser built just for developers. Check out the home for web developer resources. Firefox Reality. Explore the web with the Firefox browser for virtual reality. Donate your voice so the future of the web can hear everyone. Learn more about the new, low-level, assembly-like language.
  2. Web browser project in C, C program to open a website/url C program to open a website entered by a user. It will launch Mozilla Firefox web browser to open a website so it should be installed on your computer, if you are using an another web browser then you can change path in the program.

C program to open a website entered by a user. It will launch Mozilla Firefox web browser to open a website so it should be installed on your computer, if you are using an another web browser then you can change path in the program.

What Are Web Browser Programs

C program

Web Browser Program
See Full List On En.wikipedia.org
#include
#include
#include
#include
#include
#include
void initialize_graphics_mode();
int get_key();
void draw();
union REGS i, o;
main()
{
int key, i =0, xpos, ypos, button;
char arr[200], temp[5],*ptr;
char a[]='C:Progra~1Mozill~1firefox ';
strcpy(arr,a);
i =strlen(a);
initialize_graphics_mode();
draw();
while(1)
{
if(kbhit())
key = get_key();
if((key>=97&&key<=122)||(key>=65&&key<=90)||key46||key47||key63)
{
arr[i]= key;
sprintf(temp,'%c',arr[i]);
outtext(temp);
if(getx()>470)
{
clearviewport();
moveto(5,2);
}
i++;
}
elseif(key 13)
{
arr[i]='0';
system(arr);
break;
}
elseif(key 27)
{
closegraph();
exit(EXIT_SUCCESS);
}
if(button1&&xpos>=150&&xpos<=480&&ypos>=300&&ypos<=330)
{
system('C:Progra~1Mozill~1firefox programmingsimplified.com');
break;
}
key =-1;
}
closegraph();
return0;
}
void initialize_graphics_mode()
{
int gd = DETECT, gm, errorcode;
initgraph(&gd,&gm,'C:TCBGI');
errorcode = graphresult();
if( errorcode != grOk )
{
printf('Graphics error : %sn',grapherrormsg(errorcode));
printf('Press any key to exit...n');
getch();
exit(EXIT_FAILURE);
}
}
int get_key()
{
i.h.ah=0;
int86(22,&i,&o);
return( o.h.al);
}
void draw()
{
settextstyle(SANS_SERIF_FONT,HORIZ_DIR,2);
outtextxy(275,11,'Web Browser');
outtextxy(155,451,'www.programmingsimplified.com');
outtextxy(5,105,'Enter URL : ');
rectangle(120,100,600,130);
setviewport(121,101,599,129,1);
moveto(5,1);
}




Publicité
Partager cet article
Repost0
Pour être informé des derniers articles, inscrivez vous :
Commenter cet article