Monday, October 29, 2018

Selection



What is selection?
In an algorithmic implementation, an instruction or block of instructions may be executed (or
not) with certain predetermined conditions.

Operator, Operand, and Arithmetic

What are Operator and Operand?

An operator is a symbol to process the values in the result of a new value

An operand is a part that specifies which data should be manipulated or exploited

Formatted Input and Output

Functions

The standard library functions are predefined functions provided by the C compiler. Using them, specify the header files indicating where to find these functions (include directive)

The function defined by the programmer or the user-defined function are functions created by the programmer / developer for use in a program.

Introduction to C Progamming

What is Algorithm?
An algorithm is a procedure to solve a problem in terms of actions to execute and the order of execution of these actions.

Pointer and Array

What is the pointer?

A pointer is a value that designates the address (that is, the location in memory) of a certain value. Pointers are variables that contain a memory location. Pointers can reference any type of data, including functions.

Repetition

What is repetition?
Repetition means repeating the sequence of instructions several times, or until certain results are achieved. In programming terms, this means loops of all types, such as repetitive, for, while, etc.