- Tell me about your self
- Explain about
- Function pointers
- call backs
- compilation process
- how malloc works
char *ptr (char*)(malloc(100))
free(ptr);
how free knows that it has to deallocate 100Bytes
- how sizeof(x) id implemented
- programs related to strings
- string reverse with out temp array
- string copy
- concatenate string *int & return string
eg: “hellop”10;
return hello10 as sting