
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, number, num1, num2=0;
char str1[50];
num1 = number;
for(i=2; i<=20; i+=2) {
printf("%d", i);
printf(", ");
}
return 0;
}

Well, the propagation of light is fundamentally due to oscillation of electric field and magnetic field perpendicularly, which allows the light waves to propagate in the direction perpendicular to both the existing fields, i.e. light waves propagation solely depends on these fields.
But, sound waves are non other than the transference of energy due to disturbance, as well the propagation of sound wave has already been found to be adiabatic in nature, and through the adiabatic equation,...
Books Review
Title: "Atomic Habits" by James Clear
Introduction:
"Atomic Habits" by James Clear is a transformative self-help book that delves into the power of small habits and their impact on personal growth and success. With a captivating writing style and practical advice, this book provides readers with valuable insights and actionable strategies to create positive change in their lives.
Summary:In "Atomic Habits," Clear introduces the concept of "atomic habits," emphasizing the profound...

At dawn and dusk, large amount of blue and violet light(shorter wavelength) has been scattered so, the light that is recieved by an observer is mostly of a longer wavelength and therefore appears to be red.

#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}
