Ask for advice on the meaning of reserved words in Delphi

Updated on technology 2024-02-09
10 answers
  1. Anonymous users2024-02-06

    It's the kind of language syntax itself that defines what can't be treated as a program.

    An English word used for variables.

    For example, for while begin end, etc.

  2. Anonymous users2024-02-05

    String copying, which returns n characters starting with the first few characters in the specified string.

  3. Anonymous users2024-02-04

    It's a function, strcopy('abcde',2,3)='bcd', that is, starting with the second character, copy the next three

  4. Anonymous users2024-02-03

    If it's dephi7

    It is: tools ->editor options ->color

    You can quickly set all fonts, or you can set a prima individually.

  5. Anonymous users2024-02-02

    For text files, the reset process will open the file in read-only mode, and for typed and untyped files, the reset process will open the file in read-write mode.

    These two functions tend to be in the form of the document itself.

  6. Anonymous users2024-02-01

    The answer is that the reserved words of the language need to be case-sensitive. Therefore, both a and d are incorrect, and they should be: float and char respectively.

    It is also wrong to have a space in the middle of the integer in option C, only B is correct, which is used to indicate that the data is signed, i.e. +-.

  7. Anonymous users2024-01-31

    The reserved word is a name that is reserved and occupied by his norms, standards.

    For example, the int,c language standard specifies that it is an integer. You can no longer define a name for yourself.

  8. Anonymous users2024-01-30

    Reserved words are keywords Any programming language has keywords that mean that they can be used directly without calling any external files or modules, such as (if) or types such as int or other meanings such as (static), which have been explicitly defined by the compilation system and can no longer be used by variable names or function names.

  9. Anonymous users2024-01-29

    A return value of the Windows 32 API function, which indicates that the function was successfully invoked without errors, you can see the first chapter of the Windows Core Programming book.

  10. Anonymous users2024-01-28

    The function of the reallocmem process is to reallocate memory blocks of a specified size. The prototype of its function is defined as follows:

    procedure reallocmem(var p: pointer; size: integer);

    You can use freemem to free up the requested block of memory.

Related questions
12 answers2024-02-09

Executed in one data control.

alter table name alter column id counter (1, 1). >>>More

14 answers2024-02-09

After reading your **, let's explain the problem in your ** to you. >>>More

14 answers2024-02-09

First of all, there is something wrong with the for loop. >>>More

10 answers2024-02-09

Random numbers in pascal.

Random numbers refer to a series of numbers that theoretically have no rules to follow, have an equal probability of each number appearing within a specified range, and cannot be used to follow the previous number. The basic principle of a general random number generator is: first, initialize a random seed, the initial value of which can be an arbitrary integer; Every time a random number is obtained, a special operation is performed based on the random seed, a random number is obtained and returned, and then some operation is performed on the random seed to change the value of the random seed. >>>More

14 answers2024-02-09

function getsqlserverlist(strings:tstrings):boolean;

The function is implemented as follows: >>>More