When c language was developed?


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

Post New Answer

More C Interview Questions

How can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


Explain how many levels deep can include files be nested?

0 Answers  


Name the language in which the compiler of "c" in written?

3 Answers   Bajaj,


How to throw some light on the b tree?

0 Answers  


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

0 Answers  






write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.

5 Answers   Temenos,


What is getch () for?

0 Answers  


declare afunction pointer to int printf(char *)?

1 Answers   HCL,


What is pass by value in c?

0 Answers  


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

0 Answers   TCS,


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  


Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???

2 Answers   TCS,


Categories