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

1 Posted Topic

Member Avatar for PolarClaw

// Pascal Trangle Using byy arrray #include<iostream.h> #include<iomanip.h> #define max 16 void main() { int a[max][max]; int n; cout <<"Display Pascal Tringle shao:\n"; cout<<"Enter the value (<=15):"; cin>>n; if (n>=16) { cout <<"Thge value is so big\n"; return; } if (n<0) { cout <<" Inlvalid value!"; return; } for ( …

Member Avatar for H A hashim
1
1K

The End.