Chat with our AI personalities
Value of 10
#include<stdio.h> #include<conio.h> void main() { int n; clrscr(); printf("Enter Decimal Number: "); scanf("%d",&n); printf("Hexadecimal value is: %x",n); getch(); }
The ASCII value of capital K is 75. For a small k it is 107.
1st position after decimal is 1/10 2nd position after decimal is 1/100 3rd position after decimal is 1/1000 ..... nth position after decimal is 1/(10^n)
The absolute value of a number is the value of the number before any decimal places are considered and ignoring any negative signs. for example, the absolute value of -5.98 is 5. You simply take the positive whole number value and ignore the numbers after the decimal point. The floor function drops anumber to the lowest whole number before the decimal point. For instance, 5.98 would become 5. However -5.98 would be -5. The negative sign matters in this instance. I have found an interesting relationship between the two functions to estimate a square root. sqrt(n) aproximately= [n +abs(floor(sqrt(n)))*abs(floor(sqrt(n)))]/(2*abs(floor(sqrt(n)))+1).