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.71K
~893 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for naik.pranjal

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

Member Avatar for Varun_8
-1
893

The End.