what is the difference between embedded c and turbo c ?
Answer Posted / aravind
Embedded C has Integrated Development Environment(IDE) and additional predefined functions and other standard libraries including C.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is the difference between fread and fwrite function?
How can I make sure that my program is the only one accessing a file?
What are run-time errors?
Is array name a pointer?
Can you mix old-style and new-style function syntax?
How pointer is different from array?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is structure in c definition?
How can you increase the size of a statically allocated array?
Why is this loop always executing once?
What are structural members?
will u please send me the placement papers to my mail???????????????????
What is the role of && operator in a program code?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }