Is linux written in c or c++?



Is linux written in c or c++?..

Answer / Anuj Kumar Puniya

%d is a format specifier in printf() function of C language, used to print integer values.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?

1 Answers  


How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.

15 Answers   Satyam,


How do I use turbo c++?

1 Answers  


a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?

2 Answers   CTS,


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


Can a new be used in place of old mallocq? If yes, why?

1 Answers  


How do I get good at c++ programming?

1 Answers  


What is the difference between cin.read() and cin.getline()?

1 Answers  


What is static function and static class?

4 Answers   HCL,


Is there anything you can do in C++ that you cannot do in C?

1 Answers  


What are static member functions?

1 Answers  


What is singleton class in c++?

1 Answers  


Categories