What is the main differences between C and Embedded C?
Answer Posted / dongay
Embedded C is an extension of C
The Extra Features are available in Embedded C are
1. fixed point types
2. multiple memory areas
3. I/O register mapping.
| Is This Answer Correct ? | 99 Yes | 23 No |
Post New Answer View All Answers
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the use of #include in c?
Can a variable be both static and volatile in c?
int far *near * p; means
How can you return multiple values from a function?
Explain why can’t constant values be used to define an array’s initial size?
Can we increase size of array in c?
What is a structure and why it is used?
What is array of structure in c?
What is default value of global variable in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is a pragma?
What is the difference between array and linked list in c?
Explain main function in c?
Write the Program to reverse a string using pointers.