Tuesday, April 3, 2012

Learn C program || write a C Program || Visit my Blog || Get help

Hello friend's, You know that C is the most basic language to perform well in programming. if you are in initial stage of C, make a best practice to prove your innovation. I am here to help you with your query. I am also a blogger friends. So I help you through my regular blog. Please visit www.cproblemsolution.blogspot.com and write your problem in a comment . you also keep contribution to help others to learn C. Just email me at afsarpervez@hotmail.com   and write in email body: " I wish to contribute in cproblemsolution.blogspot.com"
I will send you a invitation email to your email address. 
So visit now and learn something new. (C program)

Thursday, September 8, 2011

Orkut Mobile - Call a friend's phone from their Orkut profile

Orkut Mobile - Call a friend's phone from their Orkut profile

Wednesday, August 10, 2011

Print the lowest and the highest number

/****************print the lowest and the highest number of given some numbers (using array) ******************/
/*------------------------------------------------------------------------------------*/

#include<stdio.h>
#include<math.h>

main()
{
int n,i;
float a[20],max, lowest;
printf("We want to print the lowest and the highest\n");
printf(" \nNumber of some given numbers(using array)\n");
printf("\nPlease enter the value of n\n");
scanf("%d",&n);
printf(\nPplease enter some numbers\n");
for(i=0;i=max)
max=a[i];
}
printf("\nThe required minimun value is=%0.5f\n",lowest);
printf("=\nThe required maximun value is=%0.5f\n",max);
return(0);
}




Avarage of a list of number

/*********** Find the avarage ************/

#include<stdio.h>
#include<conio.h>
void main()
{
int i,n,a;
float sum=0;
clrscr();

printf("How many number :");
scanf("%d",&n);
for(i=0;i