C Program to Print V Numbers Pattern

In this tutorial, i am going to show you how to print v shape numbers pattern in c programs with the help of for loop and while loop. All C Programs to Print V Numbers Pattern C Program to Print V Numbers Pattern using For Loop #include <stdio.h> int main() { int rows; printf(“Enter V Shape Number … Read more

C Program to Print Triangle Numbers Pattern

In this tutorial, i am going to show you how to print triangle numbers pattern in c programs with the help of for loop and while loop. All C Programs to Print Triangle Numbers Pattern C Program to Print Triangle Numbers Pattern using For Loop #include<stdio.h> #include<stdlib.h> int main(){ int i,j,k,l,n; printf(“enter the range=”); scanf(“%d”,&n); … Read more