How was c created?


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

Post New Answer

More C Interview Questions

Can we increase size of array in c?

0 Answers  


What is pragma in c?

0 Answers  


what is the disadvantage of using macros?

1 Answers   Wipro,


What is 2 d array in c?

0 Answers  


What is the use of structure padding in c?

0 Answers  






In c programming language, how many parameters can be passed to a function ?

0 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,


How can I manipulate strings of multibyte characters?

0 Answers  


i=10,j=20 j=i,j?(i,j)?i:j:j print i,j

1 Answers   CSC,


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

0 Answers  


what is the c.

3 Answers   IBM, TCS,


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Categories