What is the main differences between C and Embedded C?
Answer Posted / dev
C is a widely used general purpose high level programming language mainly intended for system programming.
Embedded C is an extension to C programming language that provides support for developing efficient programs for embedded devices.It is not a part of the C language
C Usually for desktop programming.
embedded C Used for embedded programming.
Can refer below article
http://wikiuncle.com/index.php?title=C_vs_Embedded_C
| Is This Answer Correct ? | 26 Yes | 7 No |
Post New Answer View All Answers
How to define structures? ·
What is the general form of #line preprocessor?
can any one provide me the notes of data structure for ignou cs-62 paper
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the use of getchar() function?
I have a varargs function which accepts a float parameter?
How do I create a directory? How do I remove a directory (and its contents)?
plz let me know how to become a telecom protocol tester. thank you.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Is c call by value?
Why void is used in c?
How can you find the day of the week given the date?
Explain what is the benefit of using const for declaring constants?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Do pointers take up memory?