hello, i'm new to xcode so i started a new project in command line utility -> standard tool. when i press build and run, it does but does not show the program. here is the code
Code:
#include <stdio.h>
int main (int argc, const char * argv[]) {
// insert code here...
printf("Hello, World!\n");
return 0;
}