⟩ Write a functionchar * CreateEmptyString(int len);function should return an pointer to an empty string of length len
char * setEmpty(int len){
if (0>len) return NULL;
char * c = (char *) malloc(len+1);
memset(c, 0, len+1);
return c;
}
char * setEmpty(int len){
if (0>len) return NULL;
char * c = (char *) malloc(len+1);
memset(c, 0, len+1);
return c;
}
Please explain the difference between shallow copy and deep copy?
Explain the requirements for developing iPhone Apps?
Explain Iphone application Development?
Tell me does multitasking support is available from which version?
Explain iphone architecture?
Explain popular apps of iPhone?
Tell us about the most fun you have had on your job?
Any question which can be asked from a software company when they told to ask any question?
Do you know anyone who works for us now?
Why should i join this industry?