Difference Between embedded software and soft ware?
Answer Posted / 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 |
Post New Answer View All Answers
What is character set?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is register variable in c language?
What is a const pointer in c?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How can I write a function that takes a format string and a variable number of arguments?
When can you use a pointer with a function?
When should you not use a type cast?
What is size of union in c?
What is hungarian notation? Is it worthwhile?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
How to write a code for reverse of string without using string functions?
What are categories used for in c?
What is void c?
Explain what is the advantage of a random access file?