Is c++ a difficult language?



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

Post New Answer

More C++ General Interview Questions

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  


Explain the extern storage classes in c++.

1 Answers  


What are the difference between reference variables and pointers in C++?

1 Answers  


When a function is made inline. Write the situation where inline functions may not work.

2 Answers  


What is different in C++, compare with unix?

1 Answers  


Why Pointers are not used in C++?

1 Answers   Global Logic,


How to defines the function in c++?

1 Answers  


Which algorithm do you like the most? Why?

2 Answers   Google,


What are the different types of comments allowed in c++?

1 Answers  


what is Loop function? What are different types of Loops?

1 Answers  


Why is swift so fast?

1 Answers  


List the issue that the auto_ptr object handles?

1 Answers  


Categories