I am self-learning basic C programming and have installed Xcode v. 14.2 on MacOS Monterey v. 12.7.5. I cannot get any programs I write under a new project I created to build and run on Xcode. Here is an example of what I am trying to build and run:
#include <stdio.h>
int main() { char test_string[] = "new string text";
printf("This process will %s\n",test_string);
return(0);
}
Any guidance or feedback would be appreciated.