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 |
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
given post order,in order construct the corresponding binary tree
How many types of errors are there in c language? Explain
what is a non volatile key word in c language?
How can you dynamically allocate memory in C?
When should the volatile modifier be used?
How can I list all of the predefined identifiers?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What is a example of a variable?
What language is windows 1.0 written?