Index « Previous Next »

Question

Write a program that produces the following output:

hello world output

 

Source Code

#include <stdio.h>

int main()
{
    printf("CCCCCCCCC\nCC\nCC\nCC\nCC\nCCCCCCCCC");
    return 0;
}