Is void a keyword in c?
Why do we use null pointer?
How do I get a null pointer in my programs?
Difference between Shallow copy and Deep copy?
Can I initialize unions?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Compare array data type to pointer data type
What is a pointer value and address in c?
What is structure in c language?
What does calloc stand for?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Can you please explain the difference between malloc() and calloc() function?
Can you please explain the difference between exit() and _exit() function?
Explain what is dynamic data structure?
How do you define a function?