Q. Write a C program to print the following number triangle pattern as:
0
101
21012
3210123
432101234
54321012345
Ans.
/*c program for number triangle pattern*/
#include<stdio.h>
int main()
{
0
101
21012
3210123
432101234
54321012345
Ans.
/*c program for number triangle pattern*/
#include<stdio.h>
int main()
{