40. Write a C program to display following output on the screen.
1
0 1
1 0 1
0 1 0 1
1 0 1 0 1
#include <stdio.h>
#include <conio.h>
void main()
{
int n, i, j;
for (i = 1; i <= 5; i++)
{
for (j = i; j >= 1; j--)
{
printf("%d ", j % 2);
}
printf("\n");
}
}
Output
1
0 1
1 0 1
0 1 0 1
1 0 1 0 1