Get me a number puzzle game-program
No Answer is Posted For this Question
Be the First to Post Answer
What is the differances between a abstract calss and interface
What is polymorphism and example?
why to use operator overloading
What do you mean by overloading?
What is extreme programming?
Why oops is important?
what is runtime polymorphism? For the 5 marks.
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
write a C++ program for booking using constructor and destructor.
What causes polymorphism?
what is cast operator?
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }