Friday, August 16, 2013
test post
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtestvvv
v
v
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
v
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtestv
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtestv
v
v
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
testtesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttesttest
testtest
Monday, April 16, 2012
C Programming Data Types : Part 1
C has concept of data type which are used to define type of variable means a variable hold which type of data (i.e char,interger,float e.t.c).
so there are 6 data types available in the C are.
1.) Integer.
2.) Char .
3.) Float.
4.) Double.
5.) void .
6.) Enum.
Int Variable name
Example.
int val;
Example. Char val;
val=INDIA;
Example.
Double val;
val=250000;
Example.
enum language { english, french, spanish = 4, german, chinese };
If value assigned to the variable then that value for that variable is used .if not then the value of last variable + 1 is the value of that variable.
If no value is assigned to the variable then default value is used from 0.
english-0
french-1
spanish=4
german=5
chinese=6
void has no values therefore we can't use it to declare variable type.It is basically use to define the type of function like.
void main()
That's means the function main returning nothing.
The type of modifiers are .
short
long
signed
Unsigned
short int >= int >= long int
float >= double >= long double
That means the value assigned by the short int is less than or equal to int .Similar the value assigned by the int is equal or less than value assigned by the long int.
If you want to check manually the ranges of integer and float then try the below code .
Output
That's it i will continue this tutorial in next section too.
so there are 6 data types available in the C are.
1.) Integer.
2.) Char .
3.) Float.
4.) Double.
5.) void .
6.) Enum.
Integer
Integer datat ype are used to define integer type.Int Variable name
Example.
int val;
Char
char defines characters.Example. Char val;
val=INDIA;
Double
Double use for large floating point variables.Example.
Double val;
val=250000;
Enumerated
A enum type is integer type that allows to give the name to certain values.Example.
enum language { english, french, spanish = 4, german, chinese };
If value assigned to the variable then that value for that variable is used .if not then the value of last variable + 1 is the value of that variable.
If no value is assigned to the variable then default value is used from 0.
english-0
french-1
spanish=4
german=5
chinese=6
Void
Void means "containing nothing"void has no values therefore we can't use it to declare variable type.It is basically use to define the type of function like.
void main()
That's means the function main returning nothing.
Modifiers
Modifiers define the amount of memory allocated to the variable.The type of modifiers are .
short
long
signed
Unsigned
short int >= int >= long int
float >= double >= long double
That means the value assigned by the short int is less than or equal to int .Similar the value assigned by the int is equal or less than value assigned by the long int.
If you want to check manually the ranges of integer and float then try the below code .
#include <stdio.h>
#include <limits.h>
void main()
{
printf("Signed char minimum value: %d \n", SCHAR_MIN );
printf("Signed char maximum value: %d \n", SCHAR_MAX );
printf("Unsigned char minimum value: %d \n", 0 );
printf("Unsigned char maximum value: %d \n", UCHAR_MAX );
printf("Char minimum value: %d \n", CHAR_MIN );
printf("Char maximum value: %d \n", CHAR_MAX );
printf("Signed short minimum value: %d \n", SHRT_MIN );
printf("Signed short maximum value: %d \n", SHRT_MAX );
printf("Unsigned short minimum value: %d \n", 0 );
printf("Unsigned short maximum value: %d \n", USHRT_MAX );
printf("Signed int minimum value: %d \n", INT_MIN );
printf("Signed int maximum value: %d \n", INT_MAX );
printf("Unsigned int minimum value: %u \n", 0 );
printf("Unsigned int maximum value: %u \n", UINT_MAX );
printf("Signed long minimum value: %ld \n", LONG_MIN );
printf("Signed long maximum value: %ld \n", LONG_MAX );
printf("Unsigned long minimum value: %lu \n", 0 );
printf("Unsigned long maximum value: %lu \n", ULONG_MAX );
printf("Signed long long minimum value: %lld \n", LLONG_MIN );
printf("Signed long long maximum value: %lld \n", LLONG_MAX );
printf("Unsigned long long minimum value: %lu \n", 0 );
printf("Unsigned long long maximum value: %llu \n", ULLONG_MAX );
getch();
}
#include <limits.h>
void main()
{
printf("Signed char minimum value: %d \n", SCHAR_MIN );
printf("Signed char maximum value: %d \n", SCHAR_MAX );
printf("Unsigned char minimum value: %d \n", 0 );
printf("Unsigned char maximum value: %d \n", UCHAR_MAX );
printf("Char minimum value: %d \n", CHAR_MIN );
printf("Char maximum value: %d \n", CHAR_MAX );
printf("Signed short minimum value: %d \n", SHRT_MIN );
printf("Signed short maximum value: %d \n", SHRT_MAX );
printf("Unsigned short minimum value: %d \n", 0 );
printf("Unsigned short maximum value: %d \n", USHRT_MAX );
printf("Signed int minimum value: %d \n", INT_MIN );
printf("Signed int maximum value: %d \n", INT_MAX );
printf("Unsigned int minimum value: %u \n", 0 );
printf("Unsigned int maximum value: %u \n", UINT_MAX );
printf("Signed long minimum value: %ld \n", LONG_MIN );
printf("Signed long maximum value: %ld \n", LONG_MAX );
printf("Unsigned long minimum value: %lu \n", 0 );
printf("Unsigned long maximum value: %lu \n", ULONG_MAX );
printf("Signed long long minimum value: %lld \n", LLONG_MIN );
printf("Signed long long maximum value: %lld \n", LLONG_MAX );
printf("Unsigned long long minimum value: %lu \n", 0 );
printf("Unsigned long long maximum value: %llu \n", ULLONG_MAX );
getch();
}
Output
That's it i will continue this tutorial in next section too.
Labels:
C,
Programming
Intoduction To C Language
History
1.) The C language was developed by AT&T bell lab in early 1970s by Dennis Ritchie.
2.) It was based on early language of AT&T bell lab language called 'B' which is also based on BPCL.
Advantages
1.) C is general purpose language for an example
(COBOL is used for making business application and FORTRAN is used for scientific applications but we can use C Language for both).
2.) C is not very high level languages.You can use C to direct memory access,create bitwise operation and so on.
3.) C is not so high level language so the execution speed of C language is fast.
Use Of C
1.) C is use for wriiting software to control hardware.2.)Unix and its derivatives are written in C language.
3.) Languages like perl and php are written in C languages.
Structure Of C
C mainly included two type of files1.)Header File : This file have extension " .h " it includes methods,constants,macros e.t.c/
2.) Source file: This file have extension " .c " it includes your source code .
Labels:
C,
Programming
Sunday, April 15, 2012
How To Test Your Programming Code Online
From today we are going to introduced programming section in this section i will going to included most popular programming languages like c,c++,php,java and advanced java and some more advanced tutorials .In today post i will show you how to run your programming code online.You can run most popular code like c , c++ ,php , pyhton and ruby e.t.c .So without wasting time let see how to do that..
1.)Go to http://codepad.org .
2.) Choose your language is it in c ,c++ or in some other language after that start writing your code(See image below).
3.)Finally click on Submit button .Your code will upload on there server and run to there machine and the output of that will display to your computer screen in web browser.
When i click on submit i got the output see below image .

i will say you must try it .It will very helpful if you looking for some program on internet for your school or college :P.
1.)Go to http://codepad.org .
2.) Choose your language is it in c ,c++ or in some other language after that start writing your code(See image below).
>

3.)Finally click on Submit button .Your code will upload on there server and run to there machine and the output of that will display to your computer screen in web browser.
When i click on submit i got the output see below image .

i will say you must try it .It will very helpful if you looking for some program on internet for your school or college :P.
Labels:
Programming
Thursday, April 12, 2012
Mouse Trap Story With Moral At The End.
A mouse looked through the crack in the wall to see the farmer and his wife open a package.
What food might this contain?
The mouse wondered - - - he was devastated to discover it was a mousetrap.
Retreating to the farmyard, the mouse proclaimed the warning:
There is a mousetrap in the house!
There is a mousetrap in the house!
The chicken clucked and scratched, raised her head and said, 'Mr.Mouse, I can tell this is a grave concern to you, but it is of no consequence to me. I cannot be bothered by it.'
The mouse turned to the pig and told him, 'There is a mousetrap in the house! There is a mousetrap in the house!'
The pig sympathized, but said, I am so very sorry, Mr.Mouse, but there is nothing I can do about it but pray. Be assured you are in my prayers.'
The mouse turned to the cow and said, 'There is a mousetrap in the house! There is a mousetrap in the house!'
The cow said, 'Wow, Mr. Mouse. I'm sorry for you, but it's no skin off my nose.'
So, the mouse returned to the house, head down and dejected, to face the farmer's mousetrap . . . alone.
That very night a sound was heard throughout the house -- like the sound of a mousetrap catching its prey.
The farmer's wife rushed to see what was caught. In the darkness, she did not see it was a venomous snake whose tail the trap had caught.
The snake bit the farmer's wife.
The farmer rushed her to the hospital, and she returned home with a fever.
Everyone knows you treat a fever with fresh chicken soup, so the farmer took his hatchet to the farmyard for the soup's main ingredient.
But his wife's sickness continued, so friends and neighbors came to sit with her around the clock.
To feed them, the farmer butchered the pig.
The farmer's wife did not get well; she died.
So many people came for her funeral, the farmer had the cow slaughtered to provide enough meat for all of them.
The mouse looked upon it all from his crack in the wall with great sadness.
So, the next time you hear someone is facing a problem and think it doesn't concern you,
Remember ---- when one of us is threatened, we are all at risk.
We are all involved in this journey called life.
We must keep an eye out for one another and make an extra effort to encourage one another.
SEND THIS TO EVERYONE WHO HAS EVER HELPED YOU OUT AND LET THEM KNOW HOW IMPORTANT THEY ARE.
REMEMBER. . . . . . EACH OF US IS A VITAL THREAD
IN ANOTHER PERSON'S TAPESTRY;
OUR LIVES ARE WOVEN TOGETHER FOR A REASON.
One of the best things to hold onto in this world is a FRIEND!!!
Monday, February 20, 2012
How To Speak Publically Better And Confidently
A average person shy always when come to new surroundings such as starting a new classes or joining some other classes that's our human behavior.So to develop a good personality it is necessary to overcome from this fear or shyness.
So what we can do to overcome from this shyness and speak confidently and by doing this it will help you to share your idea's to other and also to learn communicating.So here are the few step's for speaking confidently .
* Don’t be nervous when you make mistakes. Human error is far from being a new concept -nobody is perfect! It is normal for everyone to make mistakes. Just calm down and keep speaking bravely.
* Try and try again! This may be difficult for a shy person at first, but you need to force yourself to speak, and not seclude your thoughts. If you have some ideas, then try to speak out! Don’t just keep them in your head.
* If you have self confidence issues, try to think that you are the only one who has sound knowledge about the topic. Then go ahead and impart your knowledge to the audience in an effective way.
* Remember that there is a fine line between confidence and arrogance. Don’t portray an exaggerated amount of confidence, or you will come off as arrogant, believing that your ideas are better than the ideas of everyone else.
So what we can do to overcome from this shyness and speak confidently and by doing this it will help you to share your idea's to other and also to learn communicating.So here are the few step's for speaking confidently .
1. Learn how to have conversations with people
Your idea's and opinions are not always be accepted by others .So this is nothing unusual .Open your mouth and speak this will improve your courage.2. Don’t be afraid and speak loudly.
If you are speaking in low voice the other will not able to hear you clearly.So speak loudly it will also improve your courage to speak .3. Make eye contact when you speak
Making an eye contact with other help you others to listen your thinking carefully.Tips
* Don’t be nervous when you make mistakes. Human error is far from being a new concept -nobody is perfect! It is normal for everyone to make mistakes. Just calm down and keep speaking bravely.
* Try and try again! This may be difficult for a shy person at first, but you need to force yourself to speak, and not seclude your thoughts. If you have some ideas, then try to speak out! Don’t just keep them in your head.
* If you have self confidence issues, try to think that you are the only one who has sound knowledge about the topic. Then go ahead and impart your knowledge to the audience in an effective way.
* Remember that there is a fine line between confidence and arrogance. Don’t portray an exaggerated amount of confidence, or you will come off as arrogant, believing that your ideas are better than the ideas of everyone else.
Labels:
Personality Development,
Timepass
Sunday, February 19, 2012
Airtel Free Missed Call Alert Trick 2012 Working
In the last tutorial i will show you how to get your own mobile number if you forget it.If you miss that tutorial take a look at it .It will definitely help you.Today i show you how to get free miss call alert service from airtel without paying any money.So without wasting more time let see what to do to get free MCA alert service from the airtel.This is the newest trick of 2012 .So it will definitely work and it also tested by me.So let see
Just Dial *321*885# Or *321*884# Or *321*882# OR *321*881# Or *321*880#
And you will see the above message from the airtel so enjoy the trick.Don't forget to subscribe to my updates and sharing this article.
Just Dial *321*885# Or *321*884# Or *321*882# OR *321*881# Or *321*880#
And you will see the above message from the airtel so enjoy the trick.Don't forget to subscribe to my updates and sharing this article.
Labels:
Mobile,
Mobile Tips And Tricks
Subscribe to:
Comments (Atom)
What's popular on zoom





Twitter
Facebook