/* a program that prints the words to a song or poem that I like*/ #include main () { printf( "I Hate the way you talk to me\n" ) ; printf( "And the way you cut your hair.\n" ) ; printf( "I hate the way you drive my car.\n" ) ; printf( "I hate it when you stare.\n\n" ) ; printf( "I hate your big dumb combat boots\n" ) ; printf( "And the way you read my mind.\n" ) ; printf( "I hate you so much it makes me sick--\n" ) ; printf( "it even makes me rhyme.\n\n" ) ; printf( "I hate the way you're always right.\n" ) ; printf( "I hate it when you lie.\n" ) ; printf( "I hate it when you make me laugh --Even\n" ) ; printf( "worse when you make me cry.\n" ) ; printf( "I hate it that you're not around\n" ) ; printf( "And the fact that you didn't call.\n" ) ; printf( "But mostly I hate the way\n" ) ; printf( "I don't hate you--\n" ) ; printf( "Not even close, not even a little bit, not any\n" ) ; printf( "at all.\n\n" ) ; printf( "--Kat Stratford\n" ) ; printf( " --From 10 Things I Hate About You\n" ) ; }