Hello all and thank you in advance. I have installed Xcode tools and I'm trying to learn how to create applications that just do simple things so that as I code programs to learn C, I can physically see the results of what I have coded. I am having trouble doing this with Xcode tools. I have been struggling with this for a while and here is where I am:

Xcode tools > New Project > Command line utility, Standard tool

This creates my C document and the source file:

Code:
#include <stdio.h>

int main (int argc, const char * argv[]) {
    // insert code here...
    printf("Hello, World!\n");
    return 0;
}
Now I know I need to create a NIB file of sorts to physically display the "Hello, World!" but I do not know how to do this. Thank you.