Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: // a programme that prints triangle of stars # include<constrea.h> void main() { clrscr(); for(int a=5;a>=1;a--) { for(int b=1;b<=a;b++) { cout<<" "; } for(int c=6;c>=b;c--) { cout<<"*"; } cout<<endl; } getche(); } | |
Re: // what is problem in that array it cant show min number # include<constream.h> struct zeeshan { int a,b,c; char e;}; int my (int [3][3]);// function decleratio; //..................................... void main() { zeeshan zee; cout<<"enter the rows and columns"; int array[3][3]; my(array); getche(); } //////////////////////////////////////////// int my (int array[3][3]) { zeeshan … |
The End.