Computer Science, asked by djtrivedi, 1 year ago

Can someone please help me with the question no.1 ??
Please do help fast

Attachments:

Answers

Answered by Programme
1
This is not the pattern given in your book but this can help you
#include <stdio.h>   int main() { int row, c, n, temp;   printf("Enter the number of rows in pyramid of stars you wish to see "); scanf("%d",&n);   temp = n;   for ( row = 1 ; row <= n ; row++ ) { for ( c = 1 ; c < temp ; c++ ) printf(" "); // space   temp--;   for ( c = 1 ; c <= 2*row - 1 ; c++ ) printf("*");   printf("\n"); }   return 0; }

djtrivedi: It's djtrivedi
Programme: nops I have not got
Programme: please send me at [email protected]
djtrivedi: I have done ..Don't know what is going wrong ...Can u invite me?
Programme: please give me your email id
djtrivedi: it's [email protected]
Programme: invite sent
djtrivedi: Ok
djtrivedi: Sorry I did not get the invite
djtrivedi: I sent uh inbox
Similar questions