Is linux written in c or c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can you Mention some Application of C/C++?
Difference between class and structure.
Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
What does ios :: app do in c++?
Why c++ is better than c language?
What is the difference between c++ and turbo c++?
Why do we need runtime polymorphism in c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
Can a program run without main function?
When you overload member functions, in what ways must they differ?
Specify different types of decision control statements?
What are the advantages of early binding?