From bb91836e304211effa4fd0d3e3306137980ef806 Mon Sep 17 00:00:00 2001 From: deepanshu1201 <72185497+deepanshu1201@users.noreply.github.com> Date: Tue, 25 Oct 2022 19:32:45 +0530 Subject: [PATCH] Add files via upload --- C/pyramid in c ++.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 C/pyramid in c ++.cpp diff --git a/C/pyramid in c ++.cpp b/C/pyramid in c ++.cpp new file mode 100644 index 0000000..62f1ec7 --- /dev/null +++ b/C/pyramid in c ++.cpp @@ -0,0 +1,23 @@ +#include +using namespace std; +int main() +{ + int i, space, rowSize, k=0; + cout<<"Enter the Number of Rows: "; + cin>>rowSize; + cout<<"\nPyramid of "<