GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Tuesday, March 15, 2011

C - Puts

#include <stdio.h>
#include <stdlib.h>


int main()
{
    system("color 2f");

    char apple[] = "Apple be the biggest company now";
    char google[] = "In the future of the time may be Google";
    char zinga[] = "Zinga is another company that has the chance";

    puts(apple);
    puts(google);
    puts(zinga);

    return 0;
}

Share/Bookmark

No comments:

Post a Comment