This program is about print the pattern as Diamond up to the given limits using For Loop
#include<stdio.h> int main() { int i,j,n; printf("\nEnter the value:"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("\n"); for(j=1;j<=(n-i);j++) { printf(" "); } for(j=1;j<i;j++) { printf(" *"); } for(j=1;j<=i;j++) { printf(" *"); } } for(i=1;i<=n;i++) { printf("\n"); for(j=1;j<=i;j++) { printf(" "); } for(j=n;j>i;j--) { printf(" *"); } for(j=1;j<(n-i);j++) { printf(" *"); } } return 0; }To download raw file Click Here
Enter the value:5 * *** ***** ******* ********* ******* ***** *** *
Learn All in Tamil © Designed & Developed By Tutor Joes