5. distance conversion:
Convert a distance from miles to kilometers .there are 5280
feets per mile,12 inches per foot .2.54 centimeters per
inch and 100000centimeters per kilometer
Answer Posted / gayathri
There is Syntax error
Line 15: printf("Distance in KM: %lf",km);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a code to generate a series where the next element is the sum of last k terms.
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
What is build process in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
How can I split up a string into whitespace-separated fields?
What is pointer to pointer in c?
What is extern storage class in c?
Which header file is essential for using strcmp function?
What is the symbol indicated the c-preprocessor?
Why does the call char scanf work?
Which of these functions is safer to use : fgets(), gets()? Why?
Explain what is a const pointer?
What is the difference between NULL and NUL?
What is dynamic variable in c?
Explain is it better to bitshift a value than to multiply by 2?