What is the main differences between C and Embedded C?

Answer Posted / meena

Embedded c is the combination of Normal c we are using and Assembly lanquage.In embedded c we can get some library file as header file(e.g reg51.h, which will include all the port and register declaration with some more features)
By simply adding this file we are able to work with any port or any register of 8051 MCU.

Is This Answer Correct ?    21 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why we use stdio h in c?

573


Why we write conio h in c?

553


Explain how can a program be made to print the line number where an error occurs?

687


Explain how does free() know explain how much memory to release?

569


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

700






What is break in c?

579


If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3242


In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.

1372


code for find determinent of amatrix

1511


Discuss the function of conditional operator, size of operator and comma operator with examples.

675


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

660


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

1583


What is the use of structure padding in c?

555


What is a MAC Address?

623


Tell us bitwise shift operators?

590