#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void StringCopy(char* strSource, char* strDestination)
{
int i = 0;
while(*strSource!=' ')
{
*strDestination++ = *strSource++;
}
*strDestination = ' ';
}
int main()
{
char strS[] = "You are students";
char strD[50];
StringCopy(strS, strD);
//while(strD!=' ')
printf("%s
", strD);
return 1;
}