wat is the difference between array and pointer?
Answer Posted / lucky
In a arry we have to specify length before we use.
But in the case of poiters we don't need.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is difference between structure and union with example?
What is NULL pointer?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Explain about block scope in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Explain the use of fflush() function?
Is it possible to execute code even after the program exits the main() function?
Are there constructors in c?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Is there a way to jump out of a function or functions?
What are unions in c?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is advantage of pointer in c?
What is the use of bitwise operator?