Answer Posted / 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 |
Post New Answer View All Answers
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Can we increase size of array in c?
Explain zero based addressing.
Explain void pointer?
how to make a scientific calculater ?
What is the difference between a function and a method in c?
Is c dynamically typed?
What is the use of a ‘ ’ character?
What is the difference between int main and void main?
What is the equivalent code of the following statement in WHILE LOOP format?
State the difference between realloc and free.
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is the size of structure pointer in c?
why do some people write if(0 == x) instead of if(x == 0)?
What is a structure and why it is used?