Computer Science, asked by sharvesh9999, 6 hours ago

How do you print this diamond pattern in c++? Please someone help me! Please!!!! I beg You!!!!

Answers

Answered by nishika20081975
1

Answer:

/*

* C Program to Print Diamond Pattern.

#include <stdio.h>

int main()

{

int number, i, k, count = 1;

printf("Enter number of rows\n");

scanf("%d", &number);

Similar questions