what is a c-language.what is do.
Answers were Sorted based on User's Feedback
C is a powerfull programming middle level language stands
third from the bottom level (machine level is the bottom
level) , C is widely used mainly to write a Operating
systems, application softwares like (text pad's ,
calculators, visual basics, spread sheets etc) ,and system
programming.... even after 40 years after it's development
still 'C' is a widely used programming language in IT
industry for all it's projects.........
thank u
| Is This Answer Correct ? | 25 Yes | 3 No |
Answer / honey
c language is a most powerfull language because its include
both feature (hardwere and softwere)which included both
progam are written in C language.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / radha raman
A general purpose high level programming to build any kind of application.
1. Word Processors
a. Word Star
2. Electronic Spreadsheet
a. Lotus 123
3. Database Management Systems
a. dBase
b. FoxBase
c. FoxPro
d. Firebird
4. Operating System
a. Unix
b. Linux
c. DOS
5. Device Drivers
6. Scada Systems
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a const pointer, and how does it differ from a pointer to a const?
What are local static variables? How can you use them?
What is the size of array float a(10)?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
write a program for 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 4 4
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the g value paradox?
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
What is period operator in c?
what is real time system?what is the differance between hard and soft real time systems
Is double link list a linear data structure? If Yes, Why?If No, Why?
How can we open a file in Binary mode and Text mode?what is the difference?