Machine language
Machine languages are the most fundamental of language.Using a machine languages a programmer creates instructions in the form of machine code (Ones and zeros).That a computer can follow machine languages are defined by hardware, Designs in other words the machine language for a Macintosh is not same as the machine language for a Pentium PC.In fact a computer understand only native machine language the commands in it's instruction set is commands interact the computer to perform operation such as loading, Storing, Adding and Substraction
Calculate percentage #include < stdio.h > void main() { int s1, s2, s3, s4, s5, sum, total = 500; float per; printf("\nEnter marks of 5 subjects : "); scanf("%d %d %d %d %d", &s1, &s2, &s3, &s4, &s5); sum = s1 + s2 + s3 + s4 + s5; printf("\nSum : %d", sum); per = (sum * 100)/500; /* percentage formula*/ printf("\nPercentage : %f", per); }
Comments
Post a Comment