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.71K
1 Posted Topic
THIS WORKS FOR TURBO C++:::::: #include<iostream.h> #include<conio.h> void main() { clrscr(); char m; int n; cout<<"Enter the number of rows="; cin>>n; for(int i=1;i<=n;i++) { cout<<"\n"; for(int j=1;j<=i;j++) { m=j+64; cout<<m; } } getch(); }
The End.