Results 106 - 120 of about 17197 sawaal for "function"
the perspective of data hiding is completely undesirable.C provides a special feature which allows a class to declare some other program component a function or another class to be a friend. Consider, for example public interface to read in a rational number, for example:void streamInistream& is; We could adopt a convention that every class have such a member function. In this case, the operation seems
Posted in
Computers & Technology by bwd at 4:06 AM on September 06, 2008
that can determine a functions address before runtime, object-oriented languages must determine the method that handles a message that has been dispatched to a receiver object at runtime, and it may involve an extensive search. Thats why Object-oriented systems must implement message dispatch efficiently rather than considering function call in order not to penalize the OOP style....hi thereEfficient "
Posted in
Computers & Technology by Aryan Gusain at 9:06 PM on July 11, 2008
........like railways resrvation etc...DOS is not a RTOS real time Operating system, however MS DOS can be used with certain APIs to achieve the RTOS functionality. For example, the RT Kernel Real Time Kernel which can be used with MS DOs to achieve the RTOS functionality. Other example is of Tics. Tics is delivered as a hardware support file for MS DOS.What is a real time system? Does it need to be real fast? Are we
Posted in
Computers & Technology by Nawraj at 11:50 PM on June 27, 2008
NodeRight;CNodeInteger RemoveNodeCNodeInteger oNode;;The 4 functions that we will need for our sorting are: InsertNode - traverses the list and inserts the node at the appropriate place; AddNode - adds a node to the head of the list; SwapNodes - swaps two nodes; CompareNodes - returns strcmp compatible codes -1, 0,The last function in the list will return -1 if oNodeLeft is less than oNodeRight, 0 if they are equal, and 1 if o
Posted in
Computers & Technology by Nick - at 6:08 PM on June 24, 2008
set of books, its use of a different functional currency reporting functional currency allows you to report in a different functional currency than that of your primary set of books. You must define a separate set of books for each of your reporting functional currencies. By using MRC concept we can maintain up to Eight Reporting Set Of Books....Hi thereFor a given currency or primary SOB we can define
Posted in
Computers & Technology by blogger01 at 11:00 PM on June 06, 2008
, arrays, functions, operators, objects and much more which can be help you to create better scripts for your pages. On the server side you can use JavaScript for example to manage your database entry. Java.A popular scripting language that is widely supported in Web browsers and other Web tools. It adds interactive functions to HTML pages, which are otherwise static, since HTML is a display language, not a
Posted in
Computers & Technology by jks marven at 2:42 PM on June 06, 2008
the algorithm to be written in a more general way.Delegates have the following properties:1Delegates are similar to C function pointers, but are type safe.2Delegates allow methods to be passed as parameters.3....A delegate is a type that references a method. Once a delegate is assigned a method, it behaves exactly like that method.A delegate in C is similar to a function pointer in C or C. Using a delegate allows
Posted in
Computers & Technology by Kishor More at 7:15 PM on May 21, 2008
well, One of the big uses for function pointers in C is to call a function defined at run-time. For example, the C run-time library has two routines, qsort and bsearch, which take a pointer to a function that it calls to compare two items being sorted; this allows you to sort or search, respectively, anything, based on any criteria you wish to use.I think the more common use of a function pointer
Posted in
Computers & Technology by chinni. at 11:44 PM on November 04, 2008
The program execution in C starts from the main function. Only static function can be executed before main....hi there In computer science, a preprocessor is a program that processes its input data indicates that a function named main is being defined. The main function serves a special purpose in C programs: The run-time environment calls the main function to begin program EXECUTION....The answer is NO
Posted in
Computers & Technology by harshvardhan at 12:08 AM on July 21, 2008
an inline function is a programming language construct used to suggest to a compiler that a particular function be subjected to in-line expansion; that is, it suggests that the compiler insert the complete body of the function in every context where that function is used...Inline functions are yet another feature of C7. Inline functions aremeant to replace the error-prone, preprocessor-based macros
Posted in
Computers & Technology by Sidd at 2:58 AM on December 09, 2007
One way of using Polymorphism is function overloading..where two function have same name but differ in the works...An example :common place where function overloading is seen is in constructors for a triple of numbers and from a string are specified. In the above example see that the function are having same name but they differ in there work......Function Overloading refers two or more functions may
Posted in
Computers & Technology by rakesh at 9:16 PM on October 27, 2007
Small sizeExtensive use of function callsLoose typing - unlike PASCALStructured languageLow level BitWise programming readily availablePointer implementation - extensive use of pointers for memory, array, structures and functionsC has now become a widely used professional language for various reasonsIt has high-level constructs.It can handle low-level activities.It produces efficient programs.It can
Posted in
Computers & Technology by Aruna Kumari at 11:05 PM on October 07, 2008
hello singh Black box testing takes an external perspective of the test object to derive test cases. These tests can be functional or non-functional, though usually functional. The test designer: unit, integration, functional testing, system and acceptance. The higher the level, and hence the bigger and more complex the box, the more one is forced to use black box testing to simplify. While
Posted in
Computers & Technology by Sharad Singh at 5:29 PM on May 16, 2008
;DIV SRC=url>, or generated via javascript with the new Layer, the content would then be filled with layer.document.write.In modern browsers, this functionality is provided by using an absolutely....In computer programming, layering is the organization of programming into separate functional components that interact in some sequential and hierarchical way, with each layer usually having an interface only
Posted in
Computers & Technology by dinesh at 8:27 PM on August 07, 2008
well chinni,Pointers to functions are interesting when you pass them to other functions. A function that takes function pointers says, in effect, Part of what I do can be customized. Give me a pointer to a function, and Ill call it when that part of the job needs to be done. That function can do its part for me. This is known as a callback. Its used a lot in graphical user interface libraries
Posted in
Computers & Technology by chinni. at 8:14 PM on November 04, 2008