Hey!
So I'm following this C-tutorial, and made a very simple programme. Xcode compiles it without a problem (or at least it says "Build succeeded"), but wont "build and run"! Why? I really want to run it, even though it might be sort of a pointless application.
Here's the code:
#include
<stdio.h>
int main ()
{
printf( "Apa? Apa!\n" );
getchar();
return 0;
}
So I'm following this C-tutorial, and made a very simple programme. Xcode compiles it without a problem (or at least it says "Build succeeded"), but wont "build and run"! Why? I really want to run it, even though it might be sort of a pointless application.
Here's the code:
#include
<stdio.h>
int main ()
{
printf( "Apa? Apa!\n" );
getchar();
return 0;
}