Why c is called a middle level language?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

to get a line of text and count the number of vowels in it

3 Answers   Satyam,


Explain that why C is procedural?

0 Answers   Maveric, Verifone,


what is the height of tree if leaf node is at level 3. please explain

0 Answers  


Why do we use pointer to pointer in c?

0 Answers  


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

0 Answers  


What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }

4 Answers   CTS, Oracle,


who will call your main function in c under linux?

2 Answers  


all c language question

0 Answers   Wipro,


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

2 Answers  


what do u mean by Direct access files? then can u explain about Direct Access Files?

0 Answers   LG Soft,


What is meant by recursion?

0 Answers   ADP,


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

2 Answers  


Categories