Q. Write a program to generate a following structure?
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
Ans.
/* c program for symbol structure*/
#include<stdio.h>
#include<conio.h>
int main()
{
int num,r,c;
printf("Enter loop repeat number(rows): ");
printf("Enter loop repeat number(rows): ");
scanf("%d",&num);
for(r=1; num>=r; r++)
for(r=1; num>=r; r++)
{
for(c=1; c<=num; c++)
printf("@");
printf("\n");
}
getch();
getch();
return 0;
}
/************* OUTPUT **************
Enter loop repeat number(rows): 5
/************* OUTPUT **************
Enter loop repeat number(rows): 5
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
***********************************/
***********************************/
No comments:
Post a Comment