Difference between C and Embedded C?



Difference between C and Embedded C?..

Answer / anitya

In C We can not address the Bit value.

In Embedded C we can Address the Bit value.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Interview Questions

Add Two Numbers Without Using the Addition Operator

0 Answers  


What is identifiers in c with examples?

0 Answers  


Mention four important string handling functions in c languages .

0 Answers  


What is an example of structure?

0 Answers  


which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}

4 Answers   TCS,






What does int main () mean?

0 Answers  


what is c language?

2 Answers  


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }

2 Answers   ADITI,


How can I change the size of the dynamically allocated array?

0 Answers  


what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }

3 Answers  


How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

2 Answers   CMC, Wipro,


Categories