How to convert int to string
Question: I am looking for a generic way to convert an intto a string. It cannot be platform- or compiler-specific in its implementation. Answer: The standard C++ library defines the
Question: I am looking for a generic way to convert an intto a string. It cannot be platform- or compiler-specific in its implementation. Answer: The standard C++ library defines the
Question: I have few problems with the following code: abstract class AbstractGraph extends java.awt.Frame { static int HighValue,LowValue,ArraySize; static String InstancesArray[][] = new String [20][ArraySize]; float ReturnArray(String name) { …
Question: I would like to know how I can implement a priority singly linked queue. Answer: I like to think of priority queue as a possible implementation of the standard
Question: I am creating an application by using Symantec Cafe wherein I am using one applet, from which I am calling a series of frames. I have some common functions
Question: I would like to see an example of a generic C++ exception class that could be used across objects. Answer: When using exception handling, it is often a good
Question: I have a huge chunk of C code that currently uses a shareware GUI library for I/O. I would like to replace the current GUI with a browser-based one.
Question: How does one find out the byte order of the platformon which JVM is running? For example, for a Java application that has to read a C structure from
Question: Is it possible to bring focus to a particular form element, such as the first text area of a form, when the document loads? It must be, but for
Question: How can I call a Win 32 API function that doesn’t appear in Windows.pas (EX: NetUserAdd)? I found it in the Delphi Help file, but cannot find it in