Difference Between embedded software and soft ware?
Answer / rajesh kota
Embedded software is a program which will interact with the
physical world. This will be written for a perticular
machine or device which will be dedicated to that for ever.
example: Embedded software is buil in to electronic systems
or cars, home appliances, televisions etc
Normal Software is nothing but the information technoly.
| Is This Answer Correct ? | 22 Yes | 6 No |
What is typedf?
What’s the special use of UNIONS?
Why clrscr is used in c?
write a function for strtok()??
What is the use of volatile?
write a 'c' program to sum the number of integer values
How many header files are in c?
Why is c so powerful?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
what is the difference between #include<> and #include”…”?
what does ‘Bus Error’ mean?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?