Why is c called c?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by a local block?
What is meant by preprocessor in c?
program for comparing 2 strings without strcmp()
write an interactive program to generate the divisors of a given integer.
What are the loops in c?
What is the scope of an external variable in c?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
Why c is called top down?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?