bluehash 1,581 Posted March 11, 2017 Share Posted March 11, 2017 Text check pic upload Video link Mention check @sparky Check this post out! Quote Link to post Share on other sites
sparky 1 Posted March 12, 2017 Share Posted March 12, 2017 @bluehash test bluehash 1 Quote Link to post Share on other sites
bluehash 1,581 Posted March 12, 2017 Author Share Posted March 12, 2017 Code: #include <stdio.h> int main() { int i, j, rows; printf("Enter number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; ++i) { for(j=1; j<=i; ++j) { printf("* "); } printf("\n"); } return 0; } --- Quote Link to post Share on other sites
bluehash 1,581 Posted March 12, 2017 Author Share Posted March 12, 2017 #include <stdio.h> int main() { int i, j, rows; printf("Enter number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; ++i) { for(j=1; j<=i; ++j) { printf("* "); } printf("\n"); } return 0; } :) Code with emoji: Quote Link to post Share on other sites
msptest7 0 Posted March 12, 2017 Share Posted March 12, 2017 @bluehash New user registration check Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.