Sunlight reaches Earth's atmosphere and is scattered in all directions by all the gases and particles in the air. Blue light is scattered more than the other colors because it travels as shorter, smaller waves. This is why we see a blue sky most of the time.
Program to input any number and display number of odd numbers in it;
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
int main() {
int i, number, num1, num2=0, num3, num4 =0, rem, rem1, rem2, rev = 0;
printf("Enter your number ==> ");
scanf("%d", &number);
num1 = number;
while(num1 != 0) {
rem = num1%10;
rem1 = rem%2;
if (rem1 != 0) {
num2 = num2*10 + rem;
}
num1 /= 10;
}
num3 = num2;
while (num2 != 0) {
...
I think the best technique for memorizing is by assigning meaningfulness to things that are to be memorized.
Or in other words, relating things with a memorable story, simply, creating a story.
Do you remember yourself teaching us to memorize things easily. We had related words to a story and almost everyone in the class remembered at least 25 words among the total of 30. I still remember "Bhachyeko Haat". Haha!
Memory export Jim Kwik says that anything combined with emotion becomes a...
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.

