Is c++ a difficult language?
Answer / Syed Abdul Nadeem
Yes, C++ can be considered difficult due to its complexity and rich set of features. However, with practice and understanding of fundamental concepts, it becomes easier.
| Is This Answer Correct ? | 0 Yes | 0 No |
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; }
Explain the extern storage classes in c++.
What are the difference between reference variables and pointers in C++?
When a function is made inline. Write the situation where inline functions may not work.
What is different in C++, compare with unix?
Why Pointers are not used in C++?
How to defines the function in c++?
Which algorithm do you like the most? Why?
What are the different types of comments allowed in c++?
what is Loop function? What are different types of Loops?
Why is swift so fast?
List the issue that the auto_ptr object handles?