If null and 0 are equivalent as null pointer constants, which should I use?
Compare and contrast compilers from interpreters.
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
Why doesn't C support function overloading?
How can I open files mentioned on the command line, and parse option flags?
How can I remove the leading spaces from a string?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Why c is called object oriented language?
How many types of sorting are there in c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What does s c mean on snapchat?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
Why cant I open a file by its explicit path?