Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- int main()
- {
- int num, i, j;
- printf("Enter a number: ");
- scanf("%d", &num);
- for(i = 1; i <= num; i++){
- for(j = 1; j <= i; j++){
- printf("%d", num);
- }
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement