HTML Programming

Status
Not open for further replies.

pacificboy

Broken In
Hi,
Can somebody help me in finding the solution to the problem?

How to hyperlink a C/C++ program in a HTML file? Remember it should be HTML programming through which a C/C++ program is accessed.
 

ThinkFree

Technomancer
Want to give link of a c/c++ exe file in html page. Just create it you would link a website and give the address of file in format
file:///[full path including the drive example file:///C:/Documents%20and%20Settings/pc/desktop/test.exe]
 

ray|raven

Think Zen.
Nah,was laughing at the what you pointed at,
Folks suggesting html code to launch apps from a users computer.
Btw, am still not clear why he wants to run a C/C++ app from a html page.
 

Gigacore

Dreamweaver
i think he just wants to link a c program in his computer.

If he wants visitors to download/view the file, just upload the c program with the index file in the same folder and link it as usual.

<a href="/filename.exe">C Program</a>
 

QwertyManiac

Commander in Chief
First things first, HTML is not a programming language. :p

Secondly, you can't access/run/execute any process/program via HTML. You'll be better off making an applet in Java than doing it in a non-web friendly language like C++. :)
 
Status
Not open for further replies.
Top Bottom