How is a two dimensional array passed to function when the
order of matrix is not known at complie time?
Answer / mr.a
jus pass the name of array.....to a function as it was
getting into a pointer....
| Is This Answer Correct ? | 0 Yes | 0 No |
Where in memory are my variables stored?
compare array with pointer?
What are the functions to open and close the file in c language?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What is static memory allocation? Explain
what is use of loop?
What is variable initialization and why is it important?
Can we write a program without main() function?
What is a loop?
What is a far pointer?What is the utility?
What is the purpose of ftell?
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?