Posts
 
Reputation
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
~1K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for zachcoenen4

// 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(); }

Member Avatar for zeeshan soomro
0
469
Member Avatar for jshoot

// 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 …

Member Avatar for zeeshan soomro
0
720

The End.