My issue
Given an integer
N
N - you need to generate a pyramid pattern.
Check the sample input below for
N
5
N=5.
My code
#include <stdio.h>
int main() {
int 5;
scanf("%d", &n);
// Update your code below this line
return 0;
}
Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC25/problems/PPSC104