The Help With Assignment Blog is intended to provide with tips and tricks to students so that they are able to do better at school and college. The Blog is associated with HelpWithAssignment.com (HwA), a leading provider of online tuitions in University subjects.

Thursday, January 27, 2011

C programming at HelpWithAssignment.com

C is a general purpose programming language. C is called a mid-level language because of faster program development like other high-level languages and faster program execution like assembly and machine language. C has a rich set of operators, modern control flow and economy of expressions. C also contains some additional features that allow it to be used at lower level, thus bridging the gap between machine languages and high-level languages.

Program for Prime Number Generation
#include
main()
{
int n,i=1,j,c;
clrscr();
printf("Enter Number Of Terms
");
printf("Prime Numbers Are Follwing
");
scanf("%d",&n);
while(i<=n)
{
c=0;
for(j=1;j<=i;j++)
{
if(i%j==0)
c++;
}
if(c==2)
printf("%d ",i)
i++;
}
getch();
}

At HelpWithAssignment.com we provide the best C Programming help. Our experts provide the best Online Tutoring, Assignment help and Homework help for College and University students.
For more details you visit our website at http://www.helpwithassignment.com/ http://www.helpwithassignment.com/programing-assignment-help .

This is continuation with our previous articles on C programming

No comments: