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 18696How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
2284What is the best sorting algorithm, when there is a large amount of data, that cannot be fit in the main memory. ?
1 6824Read 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;
1962Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
1974Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
1 2991Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
2 4071Post New C++ General Questions
What is the use of pointer in c++ with example?
how to explain our contribution in the project?
How can you specify a class in C++?
What is the use of typedef?
What is the arrow operator in c++?
What is a pointer with example?
Do you know the problem with overriding functions?
Is ca high or low level language?
What are the advantages of inheritance in c++?
Are strings mutable in c++?
Explain abstraction.
Implement stack operations with pointers with appropriate exception checks.
What is the use of volatile variable?
What is a unnitialised pointer?
What information can an exception contain?