Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
No Answer is Posted For this Question
Be the First to Post Answer
regarding pointers concept
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Explain how can you determine the size of an allocated portion of memory?
What is difference between static and global variable in c?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
What should not contain a header file?
How do you define a string?
What is #line?
what is Structural oriented language? give some example of this language.....?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }