Q. Write a C program to print the following number pyramid as:
1234
2341
3412
4123
Ans.
/*c program for number pyramid*/
#include<stdio.h>
int main()
{
1234
2341
3412
4123
Ans.
/*c program for number pyramid*/
#include<stdio.h>
int main()
{