Objective C is meant to support C. I have some code in C language and I want to use it in objective C how is that possible? I know it is possible but I am not sure how.
Edit
I want to use following code in objective C. How can I do it?
string FileMeasure="Hello FILE!"
int TempNumOne=FileMeasure.size();
char Filename[100];
for (int a=0;a<=TempNumOne;a++)
{
Filename[a]=FileMeasure[a];
}
Thanks
Pankaj