Who developed c language and when?


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

Post New Answer

More C Interview Questions

What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


Explain what are bus errors, memory faults, and core dumps?

0 Answers  


write a program to generate 1st n fibonacci prime number

12 Answers  


write a program in c language to print your bio-data on the screen by using functions.

0 Answers  


how to add two numbers without using arithmetic operators?

4 Answers  






Where register variables are stored in c?

0 Answers  


What are the differences between new and malloc in C?

0 Answers   Amazon,


What is hashing in c language?

0 Answers  


How can I pad a string to a known length?

0 Answers  


the format specified for hexa decimal is a.%d b.%o c.%x d.%u

7 Answers   TCS,


What is New modifiers?

0 Answers   NA,


what is the difference between embedded c and turbo c ?

1 Answers  


Categories