How to check a post is sticky or not yet?

Use is_sticky( $post_id ) to test if a post is a sticky post:

if ( is_sticky() )
    echo 'I am sticky!';


if ( is_sticky( 123 ) )
    echo 'The post with the ID 123 is sticky!';