convert 0.9375 to binary
Answers were Sorted based on User's Feedback
Answer / uthiravel
0.9375*2=1.875=>1
0.875*2 =1.75 =>1
0.75*2 =1.5 =>1
0.5*2 =1.0 =>1
0.9375=0.1111(Top to Bottom)
| Is This Answer Correct ? | 76 Yes | 10 No |
How can you be sure that a program follows the ANSI C standard?
what's the return value of malloc()
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
Program to trim a given character from a string.
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
swap two integer variables without using a third temporary variable?
What tq means in chat?
What is #include in c?
what is the difference between declaration and definition of a variable or function ?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
what is Array?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321