Is anything faster than c?


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

Post New Answer

More C Interview Questions

SRUCTURE PROGRAMMING

3 Answers   CTS, Wipro,


Ow can I insert or delete a line (or record) in the middle of a file?

0 Answers  


What is time complexity c?

0 Answers  


how to convert binary to decimal and decimal to binary in C lanaguage

7 Answers   BPO, Far East Promotions, IBM, RBS,


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

0 Answers  






Why c language?

0 Answers  


Give me the code of in-order recursive and non-recursive.

0 Answers   DELL,


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


without using control structures and control structures find the max and min of given 2 nos

1 Answers   HCL,


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

0 Answers  


What are the data types present in c?

0 Answers  


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


Categories