What is the main differences between C and Embedded C?
Answer Posted / vishnu948923
C is for desktop computers, embedded C usually is for
microcontroller based applications.
C use the resources of desktop computers (memory, OS, etc)
Embbeded C use only limited resources available in chip
(limited RAM, ROM, ports, etc).
Embbed C could be a subset of C.
Is This Answer Correct ? | 200 Yes | 16 No |
Post New Answer View All Answers
Tell me what are bitwise shift operators?
What is c variable?
How can I find out if there are characters available for reading?
Explain main function in c?
List a few unconditional control statement in c.
Array is an lvalue or not?
What does struct node * mean?
How to delete a node from linked list w/o using collectons?
How do you define a function?
Where are local variables stored in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Can you please explain the scope of static variables?
Can math operations be performed on a void pointer?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Explain the difference between ++u and u++?