Quantcast
Channel: Codeforwin
Viewing all articles
Browse latest Browse all 132

Number pattern 48 in C

$
0
0
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:

Required knowledge

Basic C programming, Loop

Program 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


Screenshot

Number pattern in C


Happy coding ;)



Viewing all articles
Browse latest Browse all 132

Trending Articles