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 |
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the difference between text files and binary files?
c program to print a name without using semicolon
int far *near * p; means
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
What is meant by type casting?
What is the function of multilevel pointer in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
How can I open files mentioned on the command line, and parse option flags?
How do c compilers work?