Who is the main contributor in designing the c language after dennis ritchie?


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

Post New Answer

More C Interview Questions

What are the advantages and disadvantages of pointers?

0 Answers  


Where does the name "C" come from, anyway?

0 Answers   Celstream,


2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

9 Answers   HCL, Tech Mahindra,


How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?

2 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  






write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?

4 Answers  


Differentiate between functions getch() and getche().

0 Answers  


void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?

7 Answers  


Where we use clrscr in c?

0 Answers  


What is c token?

0 Answers  


Why array is used in c?

0 Answers  


What is the best way to comment out a section of code that contains comments?

0 Answers  


Categories