Write a C program to print the given triangular number pattern using for loop. How to print the given number pattern series using for loop in C programming. Logic to print the given number pattern in C program.
Example:
Input N:
Output:
![Number pattern in C]()
Happy coding ;)
Example:
Input N:
Output:
Required knowledge
Basic C programming, LoopProgram to print the given number pattern
/**
* C program to print the given number pattern
*/
#include
int 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 ;)