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 |
There seem to be a few missing operators ..
Explain how can you be sure that a program follows the ansi c standard?
How can I copy just a portion of a string?
what is event driven software and what is procedural driven software?
What is advantage of pointer in c?
What are the parts of c program?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
p*=(++q)++*--p when p=q=1 while(q<=6)
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
How do you list a file’s date and time?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
How do I get a null pointer in my programs?