What language is a dll written in?
No Answer is Posted For this Question
Be the First to Post Answer
What is oops in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
Friend functions can access private and protected members of a class.
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What is stream and its types in c++?
What programming language should I learn first?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
State two differences between C and C++.
What does count ++ do in c++?
What are the comments in c++?
What is the difference between a reference and a pointer?