c program to print 1-10 numbers in pyramid fashion.
ɴᴏ sᴘᴀᴍ
Answers
Answered by
9
Answer:
int main() {
int i, j;
int count = 1;
for (i = 0; i <= 4; i++) {
printf("\n");
for (j = 0; j < i; j++) {
printf("%d\t", count)
count++;
return(0);
Output :
1
2 3
4 5 6
7 8 9 10
Answered by
0
Answer:
waise tumhari bio. mere smjh nhi aai
what to read before thinking?
hmm?
btw
good morning
Have a great day
Similar questions