the equation that convert from cartesian to polar coordinates and vice versa
r = sqrt (x*x+y*y);
phi = atan2 (y, x);
x = r*cos (phi);
y = r*sin (phi);
write a c++ program to convert binary number to decimal number by using while statement
Divide it by 1000.
This is not a question.
How to write a program for secant method by mathematica
write a vb program to find the magic square
Write a program to convert a 2-digit BCD number into hexadecimal
WRITE A PROGRAM TO CONVERT A 2-DIGIT bcd NUMBER INTO HEXADECIMAL
Technically, yes. But, the equations involved are complicated to the point that it would be a fraction of the difficulty of converting. Also, the equations are essentially the Cartesian equations with the conversions built in, so you might as well convert them to start with. However, if you insist on not converting, write out the entire process with all 4 points of interest in Cartesian coordinates. From beginning to end. Find the final equations needed and insert the conversion factors and simplify from there. To the best of my knowledge (and I did quite a bit of digging) there isn't a simply way of doing it. - Sorry.
write a c++ program to convert binary number to decimal number by using while statement
Divide it by 1000.
This is not a question.
pongada punda vayanungala ..................
In order to write a program to convert stack into queue using c language you must be able to identify the proper program. Having a special certification in programing will be beneficial as well to make sure you recognize the proper queues for the programs.
Write a program to convert a 2-digit BCD number into hexadecimal
Use the tolower() function in the C standard library.
How is this a question? Sounds like you should do more of your homework offline.
A program called a compiler, or sometimes an assembler (depending on the programming language) does this for you. You write the source code, then invoke the program that will convert this into machine language.