What is Climate Change? Climate change includes both the global warming driven by human emissions of greenhouse gases, and the resulting large-scale shifts in weather patterns. Though there have been…
Month: January 2021
Value of Biodiversity Notes in Environmental Studies
Value of Biodiversity: Biodiversity describes the richness and variety of life on earth. It is the most complex and important feature of our planet. Without biodiversity, life would not sustain.…
Energy Cycle
Energy Cycle in Ecosystem Energy moves life. The cycle of energy is based on the flow of energy through different trophic levels in an ecosystem. Our ecosystem is maintained by…
Concept of Ecosystem
What is an Ecosystem? The ecosystem is the structural and functional unit of ecology where the living organisms interact with each other and the surrounding environment. In other words, an…
Use of Break and default with Switch Statement
Switch statement In C A switch statement allows a variable to be tested for equality against a list of values. Each value is called a case, and the variable being switched on…
Components of C language
Basic Components of C Program A basic C program has the following form: 1 2 3 4 5 6 7 comments preprocessor directives int main() { statements; } This is…
Automatic Storage Class
Automatic Storage Class in C This is a storage class for local variables. That means these types of variables are defined within a block or function and their scope exists…
Passing values to functions
Passing values to functions in C programming can be done in 2 ways: Call By Value Call By Reference Function call by Value in C The call by value method of passing…
Nested Loops in C
How to use Nested Loops in C? C programming allows to use one loop inside another loop. The following section shows a few examples to illustrate the concept. Syntax The…
Applying if and switch statements
If statements in C: An if statement can be followed by an optional else statement, which executes when the Boolean expression is false. Syntax The syntax of an if…else statement in C programming language is −…