C Program to do Subtraction matrix by using 2D (2 Dimensional) Array:-------------
#include <stdio.h>
#include <conio.h>
main()
{
int a[2][2],b[2][2],c[2][2],i,j;
clrscr();
printf("Enter the elements of matrix a=\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
scanf("%d",&a[i][j]);
}
}
printf("matrix is=\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("%d\t",a[i][j]);
}
printf("\n");
}
printf("Enter the elements of matrix b=\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
scanf("%d",&b[i][j]);
}
}
printf("Matrix is=\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("%d\t",b[i][j]);
}
printf("\n");
}
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
c[i][j]=a[i][j]-b[i][j];
}
}
printf("Substraction=\n");
for(i=0;i<2;i++)
{
for(j=0;j<2;j++)
{
printf("%d\t",c[i][j]);
}
printf("\n");
}
getch();
}
Thanks Friends For Visiting..!
Google announced the 






20 to 30 minute naps every 4 hours, resulting in 6 naps each day. The uberman cycle is highly efficient, and usually results in feeling healthy, feeling refreshed upon waking and extremely vivid dreams. Many uberman-users report increased ability to lucid dream as well. However, the rigid schedule makes it near impossible to miss naps without feeling horribly tired. Blogger Steve Pavlina tried the cycle for 5.5 months and had amazingly positive results.He only reverted to monophasic sleep so that he could be on the same cycle as his wife and children.
One longer “core” nap that is supplemented with several 20-30 minute naps. The most successful variations that I have read about are either one 3 hour nap and three 20-minute naps or one 1.5 hour nap with 4-5 20 minute naps, all of which have equal amounts of time in between each nap. This cycle is much easier to adjust to than the Uberman and allows for more flexibity in nap times and in skipping naps when necessary. It is also still extremely efficient compared to monophasic with only 3-4 hours of sleep per day. Many bloggers have tried out this cycle and reported no negative effects on their health.
Bucky Fuller invented the cycle based on his belief that we have two energy tanks, the first is easy to replenish whereas the second tank (second wind) is much harder to replenish. So Bucky began sleeping for 30 minutes every 6 hours. That’s 2 hours a day of sleep! He reported feeling, “the most vigorous and alert condition I have ever enjoyed.” Doctors examined him after several years of using the cycle and pronounced him perfectly healthy. In fact, Fuller only stopped the cycle because his business associates were still stuck on monophasic cycles. This is by far the most extreme of the 4 alternate cycles, but also the most efficient.


