What is the main differences between C and Embedded C?
Answer Posted / swati jawanjal
Embedded c code generates a .hex file while a convention c
code generates a compatible .exe file.
C language uses the desktop OS memory while embedded C uses
the controllers inbuilt or any externally attached memory.
Is This Answer Correct ? | 49 Yes | 11 No |
Post New Answer View All Answers
while initialization of array why we use a[][2] why not a[2][]...?
What is a macro in c preprocessor?
How can you allocate arrays or structures bigger than 64K?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What does it mean when a pointer is used in an if statement?
Why does everyone say not to use gets?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Explain what is the heap?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
Define C in your own Language.
How can a number be converted to a string?
What is a function in c?
Explain the difference between structs and unions in c?
Explain about block scope in c?