Where is c used?
No Answer is Posted For this Question
Be the First to Post Answer
what is foreign key in c language?
Is reference used in C?
what is the diff b/w static and non static variables in C. Give some examples plz.
how to make program without <> in library.
What is the method to save data in stack data structure type?
What is the difference between the local variable and global variable in c?
Why do we use header files in c?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
To what value do nonglobal variables default? 1) auto 2) register 3) static
What do you mean by a local block?
Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);
Difference between pass by reference and pass by value?