top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Programming Language for Embedded System

+2 votes
328 views

What are the languages being used for embedded system? And why these languages has been chosen ?

posted Oct 20, 2013 by Vikram Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+2 votes

There are a number of language is available for embedded system namely C, C++, Assembly, ADA.
Choosing a language for a particular project depends on requirement like that to what type of hardware is being targeted, cost etc.

Development using Assembly language rotates around processor architecture.
C language provides low level language features, it can interact hardware directly as well as high level. It is easy to get C programmer easily so it is another factor for choosing a language.
C++ provides additional object oriented features like data abstraction.

answer Oct 20, 2013 by Vimal Kumar Mishra
+1 vote

Mostly its C, C++ and Assembly. And the selection criteria is a trade-off between Ease of writing the program Vs performance of the system.

answer Oct 20, 2013 by Salil Agrawal
...