Related Questions

What will be the error (if any) in the following C code?
#include#include#includeint main(){ char *p; *p = (char)calloc(10); strcpy(p, "HELLO"); printf("%s", p); free(p); return 0;}
How is search done in #include and #include “somelibrary.h” according to C standard?
#include are _______ files and #include “somefile.h” ________ files.