How can a called function determine the number of arguments that have been passed to it?
No Answer is Posted For this Question
Be the First to Post Answer
how can u create a doubly linked list with out using pointers?
What is expression parser in c++
Why we use #include conio h in c++?
What is the insertion operator and what does it do?
How long does it take to get good at leetcode?
What is the difference between a template and a macro?
Explain overriding.
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; }
what is a class? Explain with an example.
What is an ABC: an "Abstract Base Class"?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
what is smart pointer & use of the smart pointer ???