How many human genes are polymorphic?
No Answer is Posted For this Question
Be the First to Post Answer
What is oops in programming?
What are the benefits of interface?
Program to check whether a word is the first word of the sentence.
write a programe to calculate the simple intrest and compund intrest using by function overlading
i^=j; j^=i; i^=j; value of i,j
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
why constructor cannt be declar virtually? why destructor cannt be overloaded?
Write an operator overloading program to write S3+=S2.
What do you mean by public, private, protected and friendly?
what is mean by design pattern
create a c++ program that will ask 10 numbers and display their sum using array.
#include <iostream> using namespace std; int main() { int a = 2; 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][c[1][4]]; }