Monday, 30 April 2012
Saturday, 28 April 2012
Monday, 23 April 2012
Sunday, 22 April 2012
Friday, 20 April 2012
Thursday, 19 April 2012
Tuesday, 17 April 2012
Sunday, 15 April 2012
Saturday, 14 April 2012
Friday, 13 April 2012
Thursday, 12 April 2012
Tuesday, 10 April 2012
Sunday, 8 April 2012
Wednesday, 4 April 2012
New Libs for Adreno 200 to improve 3D performance
You can check out my previous post of LG p500 here. This new libs has work on all mobiles with adreno 200 chipsets. But i'm not sure.
I have tested only in xperia x8 and LG optimus one.
C programs using User Defined Functions
1) User defined functions to conduct a linear search.
#include<stdio.h>
int n,i,a[10],key;
void input()
{
printf("Enter the value of N = ");
scanf("%d",&n);
printf("Enter the numbers : \n ");
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}}
#include<stdio.h>
int n,i,a[10],key;
void input()
{
printf("Enter the value of N = ");
scanf("%d",&n);
printf("Enter the numbers : \n ");
for(i=0;i<n;i++)
{
scanf("%d",&a[i]);
}}