Tag: Print Figures
Total: 21 Posts
Posts of Tag: Print Figures
Total: 21 Posts
Posts of Tag: Print Figures
C program to produce the folowing design using *'s
C program to produce the folowing design using *'s #include <stdio.h> #include <conio.h> void main() { int i, j, n; char ch = 'A'; clrscr(); //to clear the screen printf("How many ...Learn MorePrint FiguresC ProgramsC program to print the following design
C program to print the following design #include <stdio.h> #include <conio.h> void main() { int i, j, k, n; clrscr(); //to clear the screen printf("How many lines?"); scanf("%d", &...Learn MorePrint FiguresC ProgramsC++ program to print the following design
C++ program to print the following design #include <iostream.h> #include <conio.h> void main() { clrscr(); //to clear the screen int i, j, k, n; cout << "How many lines?"; c...Learn MorePrint FiguresC++ ProgramsC program to produce the following design using *'s
C program to produce the following design using *'s #include <stdio.h> #include <conio.h> void main() { int i, j, k, n; clrscr(); //to clear the screen printf("How many lines:"); s...Learn MorePrint FiguresC ProgramsC program to produce the following design using *'s
C program to produce the following design using *'s #include <stdio.h> #include <conio.h> void main() { int i, j, k, n; clrscr(); //to clear the screen printf("How many lines?"); s...Learn MorePrint FiguresC ProgramsC++ program to print the following pattern:
**C++ program to print the following pattern:** #include#includevoid main(){ clrscr(); //to clear the screen int i,j,k,n; cout cin>>n; n*=2; for(i=0;i { cout for(j=n;j>i;j-=2) cout for(k=0;k cout } ge...Learn MorePrint FiguresC++ ProgramsC++ Program to print following triangle:
C++ Program to print following triangle: * * * * * ***** code: #include <iostream.h&...Learn MorePrint FiguresC++ ProgramsC++ program to print following trianlge using character *
**C++ program to print following trianlge using character *** #include#include void main(){ clrscr(); //to clear the screen int i,j,k,n; cout cin>>n; for(i=0;i { cout for(j=0;j cout for(k=n;k>i;–k) c...Learn MorePrint FiguresC++ ProgramsC++ Program to Print Heart Shape With Happy Friendship Day Message Inside it
C++ Program to Print Heart Shape With Happy Friendship Day Message Inside it On this special day I thought to share something unique. So here is the program to print heart shape with happy friendship day messa...Learn MorePrint FiguresC++ ProgramsC program to print following trianlge using character *
**C program to print following trianlge using character *** #include #include void main() { int i,j,k,n; clrscr(); //to clear the screen printf(“How many lines?”); scanf(“%d”,&n); for(i=0;i { print...Learn MorePrint FiguresC ProgramsC++ Program to print following triangle:
C++ Program to print following triangle: * ** *** **** ***** #include <iostream.h> #include <conio.h> void main() { clrscr(); int n, i, j; cout << "Ener size of Triangle(ex-...Learn MorePrint FiguresC++ ProgramsC program to print following triangle:
**C program to print following triangle:** #include #include void main() { int i,j,k,n,a,b; clrscr(); printf(“How many lines?”); scanf(“%d”,&n); n=n*2; for(i=1;i { for(j=n-1;j>i;j-=2) printf(” ...Learn MorePrint FiguresC Programs