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 |
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
write a program wch produces its own source code aas its output?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Why is event driven programming or procedural programming, better within specific scenario?
Can a function argument have default value?
Explain indirection?
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is the difference between CV and Resume ?
What are the various topologies? Which one is the most secure?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }