Can the creation of operator** is allowed to perform the to-the-power-of operations?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 Answers  


What is meant by iomanip in c++?

0 Answers  


What is insertion sorting?

0 Answers  


Where are setjmp and longjmp used in c++?

0 Answers  


this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }

1 Answers  






What is the role of static keyword for a class member variable?

0 Answers  


How did c++ start?

0 Answers  


What is an action class?

1 Answers  


Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 Answers  


What is heap sort in c++?

0 Answers  


Explain what data encapsulation is in c++?

0 Answers  


What is else syntax in c++?

0 Answers  


Categories