Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
4 18691How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
2281What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
1 6817Read the following program carefully and write the output
of the program. Explain each
line of code according to given numbering.
#include
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
1960Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
1972Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
1 2987Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
2 4064Post New C++ General Questions
How does a C++ structure differ from a C++ class?
What is a c++ map?
Can we use clrscr in c++?
What is the use of cmath in c++?
Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?
What are shallow and deep copy?
What are the manipulators in c++?
What do you mean by storage classes?
What is the difference between C and CPP?
What are the data types in c++?
Can you use the function fprintf() to display the output on the screen?
Difference between an inspector and a mutator
Can a function take variable length arguments, if yes, how?
Tell me what are static member functions?
What do you mean by delegate? Can a user retain delegates?