TipsMake
Newest

Program - Page 54

Learn basic programming with C, C++, Python, JavaScript, PHP, CSS, HTML5 programming languages. You can also find tutorials on databases, SQL Server here.

Function in C / C ++
25 May 2019

Function in C / C ++

A function is a group of commands that go together to perform a task. Each C / C ++ program has at least one function, main (), and all most normal programs define additional

Call the function by value in C ++
25 May 2019

Call the function by value in C ++

The method calls the function by the value of the parameters passed to a function that copies the actual value of a parameter into the official argument of the function. In this

Call the function by pointer in C ++
25 May 2019

Call the function by pointer in C ++

The method of calling a function by pointer in C ++ passes parameters to a function, copying the addresses of a parameter into the official parameter. Inside the function, this

Call the function by reference in C ++
25 May 2019

Call the function by reference in C ++

The method of calling a function by reference of parameters passed to a function copies the address of a parameter into the official parameter. Within that function, the address

Number in C ++
25 May 2019

Number in C ++

Normally, when we work with Number (numeric types), we use the original data types such as int, short, long, float and double, ... Digital data types, values possible and their

Array (Array) in C / C ++
25 May 2019

Array (Array) in C / C ++

C / C ++ programming language provides data structures called arrays, stored in a set of data of the same type with fixed length. An array is used to store data sets, but it is

String (String) in C / C ++
25 May 2019

String (String) in C / C ++

This form of string originates from C language and continues to be supported in C / C ++. The string in the C programming language is essentially a one-dimensional array of

Cursor in C / C ++
25 May 2019

Cursor in C / C ++

Pointer - Pointer in C / C ++ language is easy to learn and interesting. Some tasks in the C / C ++ language are made easier by pointers, and other tasks become more flexible,

Cursor NULL in C / C ++
25 May 2019

Cursor NULL in C / C ++

It is always a good practice to assign a NULL pointer to a pointer variable in case you don't know the exact address to be assigned. This is done at the time of variable

Arithmetic pointer in C / C ++
25 May 2019

Arithmetic pointer in C / C ++

As explained in the main chapter, the cursor in C / C ++ is an address, which is a numeric value. Therefore, you can perform arithmetic operations on a pointer as you would with

Cursor and Array in C ++
25 May 2019

Cursor and Array in C ++

Pointers and Arrays are closely related. In fact, pointers and arrays are interchangeable in some cases.

Array of pointers in C ++
25 May 2019

Array of pointers in C ++

Before we understand the concept of pointer arrays, we consider the following example, which uses an array of 3 integer numbers.

Pointers to pointers in C ++
25 May 2019

Pointers to pointers in C ++

A pointer to a cursor is an unidirected form or a string of pointers. Typically, a pointer contains the address of a variable.

Pass cursor to function in C ++
25 May 2019

Pass cursor to function in C ++

C ++ allows you to pass a pointer to a function. To do this, you simply need to declare the function parameter as in a pointer type.

C ++ exercises about IF ELSE
25 May 2019

C ++ exercises about IF ELSE

In the previous C ++ exercise, we introduced you to read C ++ exercises about variables and data types. This time, there are 8 C ++ exercises about IF ELSE for you to practice and

Comment in C / C ++
25 May 2019

Comment in C / C ++

Program comments are interpretations, which you can include in C / C ++ code, and make it easier for anyone to read the source code. All programming languages ​​allow certain

Data type in C / C ++
25 May 2019

Data type in C / C ++

Data type in C / C ++ While working with any programming language, you need to use various types of variables to store information. Variables, nothing but memory locations are

Variable type in C / C ++
25 May 2019

Variable type in C / C ++

A variable provides named storage so that we can manipulate. Each variable in C / C ++ has a specific type, which determines: the size and memory layout of the variable; The