What is calloc malloc realloc in c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
I need a sort of an approximate strcmp routine?
What is the memory allocated by the following definition ? int (*x)();
How can I prevent another program from modifying part of a file that I am modifying?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
what is the meaning of 'c' language
What is wrong with this code?
Write a program to generate prime factors of a given integer?
Can we write a program without main() function?
State the difference between realloc and free.
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)