I have a whole load of projects made in Visual Studio and was wondering how to make them run in Xcode. Does it use a slightly different set of commands? (I tried to just copy the code into a C++ tool in Xcode, but it came up with something like 18 errors).
also, in Visual Studio there are things like random.h, but I tried including that in a #include statement, but it couldn't find random.h
one more thing. in MVS, you type
void main()
{
}
but in Xcode, do you have to type
int main(void)
{
}
?
also, in Visual Studio there are things like random.h, but I tried including that in a #include statement, but it couldn't find random.h
one more thing. in MVS, you type
void main()
{
}
but in Xcode, do you have to type
int main(void)
{
}
?