Home
Posts filed under pattern
Showing posts with label pattern. Show all posts
Showing posts with label pattern. Show all posts
Monday, September 19, 2016
GREEN Matrix Pattern
Program to Display Infinite GREEN Matrix Pattern. #include <iostream> #include<stdlib.h> using namespace std; int main() ...
Read more
Wednesday, September 7, 2016
Pattern: "Triangle of stars" :)
#include<stdio.h> #include<conio.h> main() { int i,j,n; //variable declaration printf("Enter number of li...
Monday, September 5, 2016
PROGRAM TO PRINT THE FOLLOWING PATTERN:
PROGRAM TO PRINT THE FOLLOWING PATTERN: 6 65 654 6543 65432 654321 #include <iostream> using namespace std; int main() { ...
PROGRAM TO DISPLAY STAR TRIANGLE PATTERN:
PROGRAM TO DISPLAY STAR TRIANGLE PATTERN IN AN ARRAY #include <iostream> using namespace std; int main() { int i,j,n; ...