answersLogoWhite

0

[object Object]

User Avatar

Anonymous

4y ago

What else can I help you with?

Related Questions

What programmer defined LPC language?

The programmer that defined LPC language is Lars Pensjo. He originally designed it for game development and it has now evolved into the language Pike.


What is use of user defined data in c?

to create user defined functions the user defined data is needed nd its useful to the programmer to create its own data.


What is an anonymous class in oops?

class is defined in the class


What do you mean by predefined?

already defined in the language and thus not needing to be defined by the programmer. usually refers to constants (e.g. PI) and functions (e.g. SQRT).


Interface can be defined inside another class?

yes ,interface can be defined inside another class


What is the difference built in functions and user defined functions?

There are two types of functions in C++: Built-in or standard Library Function User defined function BUILT-IN FUNTION Built-in function which are also called Standard Library Functions are the functions provided by the C++ and we do not have to write them. These functions are included in the Header Files They are mostly written at the start of the Program They cannot be changed. EXAMPLE: conio.h; clrscrn; , etc. USER-DEFINED FUNCTION A user-defined function is a function defined by the programmer. It allows the programmer to write their own function. It allows the programmer to divide the program in many parts, which makes it easy for the programmer to rectify or modify the program; as it is easy to locate & jump to any part of the program. A programmer can write groups code to perform a specific task and that group of code is given a name (identifier).


Are there any difference in the way a class method is defined depending on here it is defined?

Yes, there is a difference in the way a class method is defined depending on where it is declared.


Does homeownership equal middle class?

No, class is defined by income.


Why do you member functions defined outside the class?

A member function of a class can be defined outside the class using scope resolution :: operator Thanks Rajneesh


How many ip address classes are there?

class A = 16777214 class B = 65634 class C = 254 class D = not defined class E = not defined


What is an user defined array?

The term user-defined really means programmer-defined when referring to programming. An user-defined array is therefore an array that the programmer has declared, rather than one that is provided by a third party or is built-in to the language. In essence, any array you yourself declare is an user-defined array. The following are examples of user-defined arrays: int x[10]; // static array of 10 integer elements. Allocated at compile time. int* y = new int [5]; // dynamic array of 5 integer elements. Allocated at runtime.


What is the user defined object?

A user-defined object is an instance of a user-defined type, typically a class, or an enum.