//this is program to print the table of all the numbers from 1-n #include<stdio.h> #include<conio.h> void main() { int i,...
Read More
Showing posts with label Nested for. Show all posts
Showing posts with label Nested for. Show all posts
Write a program to print the table from 1-10
//this is a program to print the table from 1-10 #include<stdio.h> #include<conio.h> void main() { int i,j; printf(...
Read More
Write a program for Printing star pattern
//nested for loop #include<stdio.h> #include<conio.h> void main() { int i,j; printf("\n\nPrinting star pattern: ...
Read More
Write a program to print the star pattern 2
//this is a program to print the star pattern #include<stdio.h> #include<conio.h> void main() { int i,j; printf(...
Read More
Write a program to draw a pattern 4
//this is a program to draw a pattern #include<stdio.h> #include<conio.h> void main() { int i,j; printf("\n\nDra...
Read More
Write a program to print a number pattern 3
//this is a program to print a number pattern #include<stdio.h> #include<conio.h> void main() { int i,j,n=1; printf(...
Read More
Write a program to print the number pattern 2
//this is a program to print the number pattern #include<stdio.h> #include<conio.h> void main() { int i,j; printf(...
Read More
Write a program to print alphabet pattern
// this is a program to print alphabet pattern #include<stdio.h> #include<conio.h> void main() { int i,j; printf(...
Read More
Subscribe to:
Posts (Atom)