Mouse over image to zoom Have one to sell? Sell it yourself Klipsch THX Subwoofer KW-120-THX – KW120THX BRAND NEW!
Author Archives: admin
Uncategorized
Banana Art
Hello Guys! Check this out. A real and brilliant banana art by Stephan Brusche.It doesn’t look like anyone ever told Stephan Brusche not to play with his food, but that’s just fine by us. This imaginative artist, based in Rotterdam in the Netherlands, regularly turns bananas into creative and light-hearted works of art.Banana art means […]
Uncategorized
Damala Chocolate
New Chocolate in Town I found this chocolate in Sydney,closely resemble the name of our one of the busiest journalist.Yes! This is ‘Damala chocolate’.
Uncategorized
Complex Problems of C
Try complex problems of C at home Q. Find the sum of the following series Sn=1/1!+1/2!+1/3!+……… This is a bit more complex problem of C [c] #include #include long int fact(int); void main() { int i; int term=0; float sum=0; int num; clrscr(); printf(“\nHow many terms do you want=”); scanf(“%d”,&num); for(i=1;i
Uncategorized
Functions in C Programming
Functions WAP in C to check whether the number entered by user is armstrong or not by using function [c] #include #include #include int arm(int); void main() { int x; int y; clrscr(); printf(“\nEnter a number=”); scanf(“%d”,&x); y=arm(x); if(y==x) { printf(“\nThe number is armstrong”); } else { printf(“\nThe number is n’t armstrong”); } getch(); } […]
Uncategorized
Matrix Multiplication Using Function
Matrix Multiplication Using Function in C Matrix Multiplication Using Function in C programming is a very important concept.It can be done by using the simple concept of function.Function is not a main function.The function,we are talking here about the user defined function void mul_mat(int A[M][N],int B[M][N],int C[M][N],int s,int t,int u,int v); This is called the […]
Uncategorized
Sorting Array Using Function
Sorting Array By Function #include #include #define N 100 void array_sort(int a[],int m); void main() { int b[N]; int i; int n;//for choice clrscr(); printf(“\nHow many array element do you want?”); scanf(“%d”,&n); for(i=0;i
Uncategorized
Find Second largest Array Element
Second Largest Array Element #include #include void main() { int a[10],temp; int i,j; clrscr(); for(i=0;i
Uncategorized
Physics Questions
Q1.Two plane metal plates 4.0 cm long are held horizontally 3.0 cm apart in a vacuum, one being vertically above the other. The upper plate is at a potential of 300 volts and the lower is earthed Electrons having a velocity of 10 x 10^7 m s~ 1 are injected horizontally midway between the plates […]
Uncategorized
Nepal, a Land of Yoga & Meditation
How to be healthy by applying Yoga & Meditation Nepal is described as the land of Gods where Almighty Gods come for Meditation and Yoga. Nepal is mentioned in the ancient holy books of Hinduism about its sacred and peacefulness. Nepal is described as the holy and pious land where a lot of pious spirits […]