In this article we will learn to implement a C program to print a pattern. The following C program prints the below pattern for n = 4. 1*2*3*4*17*18*19*20 5*6*7*14*15*16 8*9*12*13 10*11 The program is as follows: #include <stdio.h> #include <conio.h> int main() { int n = 4; int lstart = 1; int rstart = […]