Can a built-in function be recursive?
No Answer is Posted For this Question
Be the First to Post Answer
What are guid?
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.
What are the benefits of operator overloading?
What is static function and static class?
tell me about yourself ?i want answer for frehers with various exasmples?
What is a c++ object?
what is the use of Namespace in c++.
What is the arrow operator in c++?
What is iterator c++?
what is the use of void main() in C++ language?
What is the use of cmath in c++?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }