Connecting Tech Pros Worldwide Forums | Help | Site Map

interface

begi
Guest
 
Posts: n/a
#1: Jun 17 '07
Is C++ good for write programming for interface pc with electronic device
with port (serial, parallel, usb)?
or other language is better? which?

begi



Victor Bazarov
Guest
 
Posts: n/a
#2: Jun 17 '07

re: interface


begi wrote:
Quote:
Is C++ good for write programming for interface pc with electronic
device with port (serial, parallel, usb)?
It's suitable.
Quote:
or other language is better? which?
C, Assembly language, are eqally suitable.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Jim Langston
Guest
 
Posts: n/a
#3: Jun 17 '07

re: interface


"begi" <begi2010@gmail.comwrote in message
news:yXadi.40534$U01.448132@twister1.libero.it...
Quote:
Is C++ good for write programming for interface pc with electronic device
with port (serial, parallel, usb)?
or other language is better? which?
You'll need to use some 3rd party library, or write inline assembly.

So C++ and inline assembly is a good choice.
Or pure Assembly.


Sarath
Guest
 
Posts: n/a
#4: Jun 18 '07

re: interface


On Jun 17, 10:47 pm, "begi" <begi2...@gmail.comwrote:
Quote:
Is C++ good for write programming for interface pc with electronic device
with port (serial, parallel, usb)?
or other language is better? which?
>
begi
Actaully C makes sense while dealing with low-level programming. It
also allows to write programs in assembly language. As C++ is an
extention or Superset of C, there's no problem in using a C++ compiler.

Ian Collins
Guest
 
Posts: n/a
#5: Jun 18 '07

re: interface


Sarath wrote:
Quote:
On Jun 17, 10:47 pm, "begi" <begi2...@gmail.comwrote:
Quote:
>Is C++ good for write programming for interface pc with electronic device
>with port (serial, parallel, usb)?
>or other language is better? which?
>
Actaully C makes sense while dealing with low-level programming. It
also allows to write programs in assembly language.
Ditto C++.
Quote:
As C++ is an
extention or Superset of C, there's no problem in using a C++ compiler.
>
No, it is not. It is a superset of the common subset of C and C++.
There are many differences, some subtle, others not. C should be
compiled with a C compiler unless you have a good reason not to and know
what you are doing.

--
Ian Collins.
Closed Thread