write a program to convert temperature from fa height into
celcius and vise versa,use modular programming
No Answer is Posted For this Question
Be the First to Post Answer
hello friends, given an expression we have to remove the unwanted brackets in that expression. Eg : (a+b) ---> a+b (a+b)*(c)-----> (a+b)*c. Please mail me if you know the logic. My mail id is : saravana6m@gmail.com. Thank you in advance :-)
1 Answers GrapeCity, Microsoft,
A suduco given & u hv 2 check if it is incomplete(blanks left),or correct or incorrect
i don't know about working of nested for loop can any one help me
A Binary no. is given, we hav to find it's decimal equivalent.
How can I Draw an ellipse in 3d space and color it by using graph3d?
write a program using virtual function to find the transposing of a square matrix?
write a program that calculate the volume of cylinder after user enters radius and height and show the algorithm used
1 Answers Jomo Kenyatta University,
Hello, I am trying to write a program in c++ which accepts month and year from the user and prints the calender. So please tell me the algorithm and what is the calender logic.
Write a program to enter 10 number of integer entries into an array n and then odds up all the odd entries. the program then displays the result. plssss answer assss fast asss u can...
Given 1 to n random number, find top 10 maximum numbers and explain the time complexity of the algorithm.
What output does the following code generate? Why? What output does it generate if you make A::Foo() a pure virtual function? class A { A() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; class B : public A { B() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; int main(int, char**) { A objectA; B objectB; return 0; }
Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)