Nesting of Function in C C permits nesting of function in c freely. main can call function1, which calls function2, which calls function3, ….. and so on. There is principle no limit as to how deeply functions can be...
Archive - November 2020
Passing Arrays to Function in C Like the values of simple variables, it is also possible to pass the values of an array to a function. To passing arrays to function in C a one dimensional an array to a called function, it is...
Pneumatic and Hydraulic Actuation Clamps Generally, the above mentioned pneumatic and hydraulic clamps are actuated by mechanical means. Sometimes, these are actuated by hydraulic or pneumatic methods where large production...
Introduction to Alternator Voltage Regulator Excitation System When the load on the power system changes, alternator voltage regulator the terminal changes. Therefore, to maintain the terminal voltage of the generator excitation...
Function Declaration in C Like variables, all functions in a C program must be declared, before they are invoked. A function declaration (also known as function prototype) consists of four parts. Function type (return...
Introduction – Electrical Machine Design Electrical machine design involves application of science and technology to produce cost effective, durable, quality and efficient machines. Also the machines should be designed as...
Automatic Voltage Regulator The function of an electric power system is to convert energy from one of the naturally available forms to electrical form and to transport it to the points of consumption automatic voltage...
Sensors and Transducers Sensors transducers are devices which produce proportional output signal (mechanical, electrical magnetic, ctc.) when exposed to a physical phenomenon (pressure, temperature, displacement, force, etc.)...
Microprocessor Based Controllers Microprocessors are essential to many of the products we use every day such as TVs, cars, radios, home appliances and of course, computers. Microprocessor based controllers are also called as...
Definition of Function in C A function definition, also known as function implementation shall include the following elements 1. function name; 2. function type; 3. list of parameters; 4. local variable declarations; 5. function...