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
Reverse number #include < stdio.h > int main() { int n, reverse = 0; printf("Enter a number to reverse\n"); scanf("%d",&n); while (n != 0) { reverse = reverse * 10; reverse = reverse + n%10; n = n/10; } /*taking unit place digit of no and moving to reverse Dividing the no to discard unit place digit*/ printf("Reverse of entered number is = %d\n", reverse); return 0; }
Comments
Post a Comment