What is c language and why we use it?



What is c language and why we use it?..

Answer / Sarika Chaudhari

"C is a general-purpose, high-level programming language that was developed by Dennis Ritchie in the 1970s. It provides constructs that allow for structured programming and lexical variable scope. C is used extensively for system software, device drivers, operating systems, application software, embedded software, game development, and more because of its efficiency, portability, and low-level control over hardware resources."n

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is main () in c?

1 Answers  


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

1 Answers   KPIT,


how c source file in converted to exe file

5 Answers   KPIT,


What is build process in c?

1 Answers  


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

1 Answers  


What is extern c used for?

1 Answers  


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

1 Answers   TCS,


What is anagram in c?

1 Answers  


WHO WROTE C LANGUAGE?

4 Answers  


What is the difference between if else and switchstatement

1 Answers  


main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

4 Answers   Vector, Wipro, Zoho,


given post order,in order construct the corresponding binary tree

1 Answers   S-Cube, Wipro,


Categories