what is the difference between embedded c and turbo c ?
Answer / 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 |
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
C program to find all possible outcomes of a dice?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
What is the use of typedef in structure in c?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
What is queue in c?
Differentiate between declaring a variable and defining a variable?
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
What is the Purpose of 'extern' keyword in a function declaration?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack