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