Programming Code (840)
Scripts_Markup Code (257) Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba. You can assume that all the characters will be unique.
5 22655Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.
5 15096code to detect versions of different browsers like internet explorer, netscape, mozilla, opera etc
HCL,
2104
Cluster head selection in Wireless Sensor Network using C programming language.
Write a program to model an exploding firecracker in the xy plane using a particle system
write a function that reverse the elements of an array in place.The function must accept only one pointer value and return void.
how to transform XML Data into HTML
Write a program that will convert an integer pointer to an integer and vice-versa.
how to track links visited in google using iframes
how to diplay a external image of output on winxp by using c & c++,
program to bring a window to the front
Definition of priority queue was given. We have to implement the priority queue using array of pointers with the priorities given in the range 1..n. The array could be accessed using the variable top. The list corresponding to the array elements contains the items having the priority as the array index. Adding an item would require changing the value of top if it has higher priority than top. Extracting an item would require deleting the first element from the corresponding queue. The following class was given: class PriorityQueue { int *Data[100]; int top; public: void put(int item, int priority); // inserts the item with the given priority. int get(int priority); // extract the element with the given priority. int count(); // returns the total elements in the priority queue. int isEmpty(); // check whether the priority queue is empty or not. }; We had to implement all these class functions.
What is XML Parser?
What output does this program generate as shown? Why? class A { A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; } }; class B { B() { cout << "B::B()" << endl; throw "B::exception"; } ~B() { cout << "B::~B()"; } }; int main(int, char**) { try { cout << "Entering try...catch block" << endl; A objectA; B objectB; cout << "Exiting try...catch block" << endl; } catch (char* ex) { cout << ex << endl; } return 0; }
write a simple calculator c program to perform addition, subtraction, mul and div.
Code for Presenting Parent/Child Data in a Data Grid Row?
How to get one hasmap value in another hashmap ,only value not key
How to add flash or *.gif file in edit panel in java?