Assembly Languages
Assembly languages are developed by short English like abrivation.Common elements of machine code to develop software in an assembly language.A programmer uses a text editor (A simple word processor) to create source file.To convert source files into object code the developer uses a special translator program called an assembler to convert each line of assembly language into one line of machine code.Although assembly language are highly detailed they are still much easier to use than machine language.
Greatest of 3 numbers #include < stdio.h > void main() { int a,b,c; printf("enter any three numbers:\n"); scanf("%d%d%d",&a, &b, &c); if(a>b&&a>c) /*if a is greater than b & c*/ printf("greatest number is: %d",a); else if(b>c) /*if not a then if b is greater than c*/ printf("greatest number is: %d",b); else /*if a & b are not greater*/ printf("greatest number is: %d",c); }
Comments
Post a Comment