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
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
How do I get an accurate error status return from system on ms-dos?
What are terms in math?
What is external variable in c?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is bin sh c?
How do you convert strings to numbers in C?
What is the significance of c program algorithms?
What is the difference between strcpy() and memcpy() function in c programming?
All technical questions
Is flag a keyword in c?
why do some people write if(0 == x) instead of if(x == 0)?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is the difference between union and anonymous union?
What is the purpose of void pointer?