Number pattern 41 in C

Write a C program to print the given number pattern using for loop. How to print the given triangular number pattern using loop in C programming. Logic to print the given number pattern using C program.

Example

Input

Input N: 5

Output

Read more

Even number pattern 2 in C

Write a C program to print the given even number pattern using loop. How to print the given even number pattern using for loop in C programming. Logic to print the given number pattern in C program. Example Input Input N: 5 Output 2 242 24642 2468642 2468108642 2 242 24642 2468642 2468108642 Required knowledge … Read more