Which is better pointer or array?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of linkage in c language?
Explain the difference between call by value and call by reference in c language?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What's the difference between a linked list and an array?
Can a function argument have default value?
How to print "Hi World" without using semi colon?
What is output redirection?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is the c language function prototype?
How do you override a defined macro?