how to write a java program for an output
****0 ***01 **012 *0123 01234
Answer / adeel
#include<iostream>
using namespace std;
int main()
{
int i,j;
for(i=0; i<=5; i++)
for(j=1; j<=i; j++)
cout<<j;
system("pause");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 4 No |
What are virtual functions?
what is overloading and overriding?
What is cohesion in oop?
what is the usage of clas templates
What is late bound function call and early bound function call? Differentiate.
What is balance factor?
What is difference between class and object with example?
What are functions in oop?
define a string class. overload the operator == to compare two strings
2 Answers Birla, Ericsson, HCL, Infosys, Infotech, MCAS, Satyam,
what is the drawback of classical methods in oops?
Program to read a comment string
some one give d clear explanation for polymorphism