Example:
Input N:
Output:
Required knowledge
Basic C programming, LoopProgram to print the given number pattern
/** * C program to print the given number pattern */ #includeint main() { int i, j, N; printf("Enter N: "); scanf("%d", &N); for(i=1; i<=N; i++) { for(j=i; j<=(i*i); j += i) { printf("%-3d", j); } printf("\n"); } return 0; }
Output
Enter N: 5
1
2 4
3 6 9
4 8 12 16
5 10 15 20 25
1
2 4
3 6 9
4 8 12 16
5 10 15 20 25
Screenshot
Happy coding ;)