Tuesday 13 September 2016




MY FAILURE AND MY SUCCESS

"Failure is the stepping stones of the success" If success crowns you directly, we will not be able accept the failures in the near future. Small failures are the pillars for success in our life.Most of our leaders across many failures and finally succeed. Success plays a vital role in their life. 

For example:Dr.A.B.J Abdul Kalam, he is the Scientist and President of the India in 2015. His ambition was to become a pilot.He failed many times. If Abdul Kalam has become a pilot, his popularity wouldn't have reached as like now. But today we know the entire history of that great personality. It was all because of his failures.He has gone through his failures in order to succeed.

Another Person:Thomas Alva Edison, he is also a great Scientist. He was so smart and he was scared of darkness. During his childhood days, his school headmaster had told his mom that he was not eligible to continue schooling , but Edison's mom said ,"Thomas ,you are the intelligent , no one is equal to you and no one can teach you except yourself "She believed him firmly and continued supporting, due to which he was able to invent something new and became a researcher.

Each and Every leader has so many failures.so just don't give up. "Arise,Awake and don't stop till the goal is reached".

Every failure will create a history as mentioned above ."Don't bother of what society says, if you have a goal,"Get it ,Set them , and just GO for it".Don't give up until you die. Success is always yours.

Wednesday 31 August 2016

Tell me (HOW AWESOME YOU ARE)...!!!

https://drive.google.com/file/d/0BzfwIEPWEoINRlVFcGRLMldBNGc/view?usp=sharing

Monday 29 August 2016

Prime numbers without using loops

void prime(int ans,int count,int num)
{
if(count<=num)
{
printf("%d ",ans-1);
++count;
if(count<=num)
{
printf("%d ",ans+1);
++count;
}
ans=ans<<1;
prime(ans,count,num);

}


}
int main(void) {
// your code goes here
int num;
scanf("%d",&num);
int num1=1,num2=2,num3=3,count=4,ans=6;
printf("%d %d %d ",num1,num2,num3);
prime(ans,count,num);
return 0;
}