What is the main differences between C and Embedded C?
Answer Posted / nanthini
Extensions for the programming language C to support
embedded processors, enabling portable and efficient
application programming for embedded systems
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
Differentiate between #include<...> and #include '...'
Why is sizeof () an operator and not a function?
Why do we use int main?
What are types of structure?
How many levels of indirection in pointers can you have in a single declaration?
Explain what is a static function?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Explain the process of converting a Tree into a Binary Tree.
Can you assign a different address to an array tag?
Why is C language being considered a middle level language?
What is call by reference in functions?
how logic is used
What is meant by high-order and low-order bytes?
What is header file definition?
What is meant by keywords in c?