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
Write a C program in Fibonacci series.
How many levels of pointers can you have?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What is the auto keyword good for?
What are actual arguments?
Can we declare function inside main?
How is a pointer variable declared?
What does %d do?
What are 'near' and 'far' pointers?
What is double pointer?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Why is c called "mother" language?
When should structures be passed by values or by references?
What is difference between static and global variable in c?
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.