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 |
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
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.
How do I use turbo c++?
a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
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
Can a new be used in place of old mallocq? If yes, why?
How do I get good at c++ programming?
What is the difference between cin.read() and cin.getline()?
What is static function and static class?
Is there anything you can do in C++ that you cannot do in C?
What are static member functions?
What is singleton class in c++?